insomnia/packages/insomnia-app/app/models/helpers/get-workspace-name.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

8 lines
246 B
TypeScript

import type { ApiSpec } from '../api-spec';
import type { Workspace } from '../workspace';
import { isDesign } from './is-model';
export default function getWorkspaceName(w: Workspace, s: ApiSpec) {
return isDesign(w) ? s.fileName : w.name;
}