Type alias JRPC_ERROR

JRPC_ERROR: {
    code: string;
    data?: object | null;
    message: string;
}

Represents a JSON-RPC error object.

Property

The error code.

Property

The error message.

Property

Additional error data (if any).

Type declaration

  • code: string
  • Optional data?: object | null
  • message: string

Generated using TypeDoc