UNPKG

sequelize-store

Version:
22 lines (21 loc) 490 B
/** * Error for problems related to defined schema */ export declare class SchemaError extends Error { static code: string; constructor(message: string); } /** * Error for problems related to entries */ export declare class EntryError extends Error { static code: string; constructor(message: string); } /** * Error for problems related to parsing entries */ export declare class ParseError extends Error { static code: string; constructor(message: string); }