Theia API Documentation v1.65.0
    Preparing search index...
    interface InlayHintsProvider {
        onDidChangeInlayHints?: Event<void>;
        provideInlayHints(
            model: ITextModel,
            range: Range,
            token: CancellationToken,
        ): undefined | InlayHint[] | Thenable<undefined | InlayHint[]>;
        resolveInlayHint?(
            hint: InlayHint,
            token: CancellationToken,
        ): undefined | InlayHint[] | Thenable<undefined | InlayHint[]>;
    }
    Index

    Properties

    onDidChangeInlayHints?: Event<void>

    Methods