Interface NotificationSendEvent<P>

interface NotificationSendEvent<
    P extends { textDocument: TextDocumentIdentifier },
> {
    params: P;
    textDocument: TextDocument;
    type: ProtocolNotificationType<P, TextDocumentRegistrationOptions>;
}

Type Parameters

Properties

params: P
textDocument: TextDocument