UNPKG

sequelize-typescript

Version:

Decorators and some other extras for sequelize (v3 + v4)

11 lines (10 loc) 321 B
import { Model } from '../Model'; export declare type ModelNotInitializedErrorOptions = { cause: string; } | { accessedPropertyKey: string; }; export declare class ModelNotInitializedError extends Error { message: string; constructor(modelClass: typeof Model, options: ModelNotInitializedErrorOptions); }