@apistudio/apim-cli
Version:
CLI for API Management Products
15 lines • 353 B
TypeScript
import { EditorTab } from "./editor-tab.model.js";
export interface EditorTabsInfo {
editorId: number;
tabs: EditorTab[];
activeTab: EditorTab | -1;
hm: HashMap;
}
interface HashMap {
[key: string]: NestedHashMap;
}
interface NestedHashMap {
[key: string]: string;
}
export {};
//# sourceMappingURL=editor-tab-info.model.d.ts.map