@apistudio/apim-cli
Version:
CLI for API Management Products
11 lines (9 loc) • 365 B
text/typescript
/**
* 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>;
}