UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2023+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

8 lines (7 loc) 402 B
import type { ColumnType } from "../driver/types/ColumnTypes"; import type { DatabaseType } from "../driver/types/DatabaseType"; import type { ColumnMetadata } from "../metadata/ColumnMetadata"; import { TypeORMError } from "./TypeORMError"; export declare class DataTypeNotSupportedError extends TypeORMError { constructor(column: ColumnMetadata, dataType: ColumnType, database?: DatabaseType); }