interface RpcErrorResponse {
    code: number | bigint;
    data?: unknown;
    message: string;
}

Properties

Properties

code: number | bigint
data?: unknown
message: string