UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

10 lines (8 loc) 207 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';