UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

9 lines 257 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ export type ViewModeState = { viewMode: View; setViewMode: (mode: View) => void; }; export type View = 'code' | 'form' | 'split'; //# sourceMappingURL=view-mode-store.model.d.ts.map