UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

37 lines 1.08 kB
/** * Copyright IBM Corp. 2024, 2025 */ import { EditorTab } from './editor-tab.model.js'; export interface EditorTabsInfo { editorId: number; tabs: EditorTab[]; activeTab: EditorTab | -1; hm: HashMap; } export interface EditorTabItem { activeEditor: boolean; editorTab: EditorTab; position: { line: number; column: number; }; tabsHeight: number; width: number; setUnSavedTabs: React.Dispatch<React.SetStateAction<number[]>>; fileName: string; unSavedTabs?: number[]; } interface HashMap { [key: string]: NestedHashMap; } interface NestedHashMap { [key: string]: string; } export declare const FormViewSupportedKinds: string[]; export declare const FormViewUnsupportedKinds: Record<string, string>; export declare const API_FORM_VIEW_VALID_KINDS: string[]; export declare const POLICY_FORM_VIEW_VALID_KINDS: string[]; export declare const TEST_FORM_VIEW_VALID_KINDS: string[]; export declare const DATAPOWERASSEMBLY_VALID_KINDS: string[]; export {}; //# sourceMappingURL=editor-tab-info.model.d.ts.map