Interface TextDocumentSendFeature<T>

A mixin type that allows to send notification or requests using a registered provider.

interface TextDocumentSendFeature<T extends Function> {
    getProvider(document: TextDocument): undefined | { send: T };
}

Type Parameters

  • T extends Function

Hierarchy (View Summary)

Implemented by

Methods

Methods