Type Alias ClientNotifications<T>

ClientNotifications: {
    readonly [key in T]: Signal<ILSPConnection, IClientNotifyParams[key]>
}

Type of client notification handlers, it is a map between the client notification name and the associated signal.

Type Parameters