interface CodeAction {
    cacheId: number;
    command?: Command;
    diagnostics?: MarkerData[];
    disabled?: {
        reason: string;
    };
    edit?: WorkspaceEdit;
    isPreferred?: boolean;
    kind?: string;
    title: string;
}

Properties

cacheId: number
command?: Command
diagnostics?: MarkerData[]
disabled?: {
    reason: string;
}

Type declaration

  • reason: string
isPreferred?: boolean
kind?: string
title: string