UNPKG

@bookla-app/react-client-sdk

Version:
11 lines (10 loc) 354 B
import { ZodError } from "zod"; export declare class BooklaError extends Error { code: string; status?: number | undefined; constructor(message: string, code: string, status?: number | undefined); } export declare class BooklaValidationError extends BooklaError { details: ZodError; constructor(message: string, details: ZodError); }