Interface CodeActionContext
Expand description
interface CodeActionContext {
markers: IMarkerData[];
only?: string;
trigger: CodeActionTriggerType;
}Properties§
§§§
readonly markers: IMarkerData[]An array of diagnostics.
readonly only?: stringRequested kind of actions to return.
readonly trigger: CodeActionTriggerTypeThe reason why code actions were requested.
Contains additional diagnostic information about the context in which a code action is run.