UNPKG

292 BTypeScriptView Raw
1/**
2 * Thrown when ORM cannot get column's type automatically.
3 * Basically, when reflect-metadata is not available or tsconfig is not properly setup.
4 */
5export declare class ColumnTypeUndefinedError extends Error {
6 name: string;
7 constructor(object: Object, propertyName: string);
8}