rpc-error.d.ts 288 B

123456
  1. declare class RpcExitError extends Error {
  2. readonly code?: string | number | null | undefined;
  3. readonly signal?: string | null | undefined;
  4. constructor(message: string, code?: string | number | null | undefined, signal?: string | null | undefined);
  5. }
  6. export { RpcExitError };