mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
6 lines
219 B
TypeScript
6 lines
219 B
TypeScript
import { isDesign, Workspace } from '../models/workspace';
|
|
import { strings } from './strings';
|
|
|
|
export const getWorkspaceLabel = (workspace: Workspace) =>
|
|
isDesign(workspace) ? strings.document : strings.collection;
|