UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

9 lines (8 loc) 328 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when ORM cannot get column's type automatically. * Basically, when reflect-metadata is not available or tsconfig is not properly setup. */ export declare class ColumnTypeUndefinedError extends TypeORMError { constructor(object: Object, propertyName: string); }