Interface TextDocumentProviderFeature<T>

A mixin type to access a provider that is registered for a given text document / document selector.

interface TextDocumentProviderFeature<T> {
    getProvider(textDocument: TextDocument): undefined | T;
}

Type Parameters

  • T

Methods

Methods