@kui-shell/core
Version:
An Electron-based shell for cloud-native development
23 lines (22 loc) • 383 B
TypeScript
/**
* Presentation modes
*
* Usage:
*
* import { Presentation } from '@kui-shell/core'
*
* {
* type: 'custom',
* presentation: Presentation.SidecarFullscreen,
* content: ...
* }
*
*/
declare enum Presentation {
Default = 0,
FixedSize = 1,
SidecarThin = 2,
SidecarFullscreen = 3,
SidecarFullscreenForPopups = 4
}
export default Presentation;