x4js - v2.2.49
    Preparing search index...

    The code action interface defines the contract between extensions and the light bulb feature.

    interface CodeActionProvider {
        provideCodeActions(
            model: ITextModel,
            range: Range,
            context: CodeActionContext,
            token: CancellationToken,
        ): ProviderResult<CodeActionList>;
        resolveCodeAction?(
            codeAction: CodeAction,
            token: CancellationToken,
        ): ProviderResult<CodeAction>;
    }
    Index