Interface Theme

interface Theme {
    description?: string;
    editorTheme?: string;
    id: string;
    label: string;
    type: ThemeType;
    activate?(): void;
    deactivate?(): void;
}

Properties

description?: string
editorTheme?: string
id: string
label: string
type: ThemeType

Methods