ACP v2 TypeScript SDK — EXPERIMENTAL DRAFT - v1.3.0
    Preparing search index...

    Type Alias BatchNotification<Params>Experimental

    One notification entry passed to Connection.sendBatch.

    type BatchNotification<Params = unknown> = {
        kind: "notification";
        method: string;
        params?: Params;
    }

    Type Parameters

    • Params = unknown
    Index
    kind: "notification"
    method: string
    params?: Params