Interface AIEditorSelectionResolver

interface AIEditorSelectionResolver {
    priority?: number;
    resolveSelection(widget, options, uri?): Promise<undefined | RecursivePartial<Range>>;
}

Implemented by

Properties

Methods

Properties

priority?: number

The priority of the resolver. A higher value resolver will be called before others.

Methods