Interface WorkspaceEditMetadata

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

Properties

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

Type declaration

  • id: string

Type declaration

  • dark: UriComponents
  • light: UriComponents
label: string
needsConfirmation: boolean