Interface JsonRpcNotification<TParams>

JSON-RPC 2.0 Notification object A notification has NO id field and expects NO response

interface JsonRpcNotification<TParams> {
    jsonrpc: "2.0";
    method: string;
    params?: TParams;
}

Type Parameters

Properties

jsonrpc: "2.0"
method: string
params?: TParams