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) 337 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when ORM cannot get method parameter's type. * Basically, when reflect-metadata is not available or tsconfig is not properly setup. */ export declare class CannotReflectMethodParameterTypeError extends TypeORMError { constructor(target: Function, methodName: string); }