Interface WorkspaceEditEntryMetadataDto

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

Properties

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

Type declaration

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