Interface WorkspaceEditMetadata

interface WorkspaceEditMetadata {
    description?: string;
    iconPath?: ThemeIcon | {
        id: string;
    } | {
        dark: URI;
        light: URI;
    };
    label: string;
    needsConfirmation: boolean;
}

Properties

description?: string
iconPath?: ThemeIcon | {
    id: string;
} | {
    dark: URI;
    light: URI;
}

Type declaration

  • id: string

Type declaration

label: string
needsConfirmation: boolean