UNPKG

@verifymail/sdk

Version:

Official JavaScript/TypeScript SDK for VerifyMail email verification API

19 lines (18 loc) 453 B
export interface APIErrorOptions { message: string; statusCode: number; code?: string; details?: any; } export declare class APIError extends Error { statusCode: number; code?: string; details?: any; constructor(options: APIErrorOptions); } export declare class ValidationError extends Error { field: string; received: any; expected: string; constructor(field: string, received: any, expected: string); }