UNPKG

@kui-shell/core

Version:

An Electron-based shell for cloud-native development

19 lines (18 loc) 483 B
/** * Text to be displayed in the sidecar toolbar * */ type ToolbarTextType = 'info' | 'success' | 'warning' | 'error'; export declare function isSupportedToolbarTextType(type: string): type is ToolbarTextType; type ToolbarTextValue = string | Element; export interface ToolbarAlert { type: ToolbarTextType; title: string; body?: string; } export interface ToolbarText { type: ToolbarTextType; text: ToolbarTextValue; alerts?: ToolbarAlert[]; } export {};