Interface CodeAction
interface CodeAction {
command?: Command;
diagnostics?: IMarkerData[];
disabled?: string;
edit?: WorkspaceEdit;
isAI?: boolean;
isPreferred?: boolean;
kind?: string;
ranges?: IRange[];
title: string;
}