UNPKG

@keplr-ewallet/ewallet-sdk-eth

Version:
11 lines (10 loc) 203 B
export type ErrorCode = number; export type ErrorObject<T> = { code: ErrorCode; message: string; data?: T; }; export interface StandardErrorOptions<T> { message?: string; data?: T; }