Type Alias ServerNotifications<T>

ServerNotifications: {
    readonly [key in T]: ISignal<ILSPConnection, IServerNotifyParams[key]>
}

Type of server notification handlers, it is a map between the server notification name and the associated ISignal.

Type Parameters