insomnia/packages/insomnia-app/app/common/get-workspace-label.ts
Dimitri Mitropoulos 5f4c19da35
[TypeScript] Phase 1 & 2 (#3370)
Co-authored-by: Opender Singh <opender.singh@konghq.com>
2021-05-12 18:35:00 +12:00

7 lines
253 B
TypeScript

import type { Workspace } from '../models/workspace';
import { isDesign } from '../models/helpers/is-model';
import { strings } from './strings';
export const getWorkspaceLabel = (w: Workspace) =>
isDesign(w) ? strings.document : strings.collection;