Interface NotifyingFeature<P>

interface NotifyingFeature<P extends { textDocument: TextDocumentIdentifier }> {
    onNotificationSent: Event<NotificationSendEvent<P>>;
}

Type Parameters

Hierarchy (View Summary)

Implemented by

Properties

onNotificationSent: Event<NotificationSendEvent<P>>