UNPKG

@proveanything/smartlinks

Version:

Official JavaScript/TypeScript SDK for the Smartlinks API

10 lines (9 loc) 206 B
/** * Represents a standardized error response. */ export interface ErrorResponse { /** Numeric error code */ code: number; /** Human-readable error message */ message: string; }