UNPKG

typeorm

Version:

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

19 lines (18 loc) 468 B
import { EntitySchema } from "./EntitySchema"; export declare class EntitySchemaEmbeddedColumnOptions { /** * Schema of embedded entity */ schema: EntitySchema; /** * Embedded column prefix. * If set to empty string or false, then prefix is not set at all. */ prefix?: string | boolean; /** * Indicates if this embedded is in array mode. * * This option works only in mongodb. */ array?: boolean; }