UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, 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); }