UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

10 lines 427 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ import { EditorTabsInfo } from "../../common/models/editor-tab-info.model.js"; export interface IStudioEditorIndexedDbHandler { setLastOpenedTabs(editorTabsInfo: EditorTabsInfo): Promise<void>; getLastOpenedTabs(): Promise<EditorTabsInfo | void>; deleteLastOpenedTabs(): Promise<void>; } //# sourceMappingURL=editor-indexed-db.interface.d.ts.map