Interface RpcResponseLike

interface RpcResponseLike {
    error?: any;
    id?: string | number;
    result?: any;
}

Properties

Properties

error?: any
id?: string | number
result?: any