interface IRPCMethod<T> {
    id: number;
    method: string;
    params: T;
    requesterId: string;
    type: "method";
}

Type Parameters

  • T

Properties

id: number
method: string
params: T
requesterId: string
type: "method"