UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

10 lines 399 B
/** * Copyright IBM Corp. 2024, 2025 */ 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