UNPKG

typeorm

Version:

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

17 lines (16 loc) 428 B
import { TableType } from "../metadata/types/TableTypes"; import { OrderByCondition } from "../find-options/OrderByCondition"; export interface EntitySchemaTable { /** * Table name. */ name?: string; /** * Table type. */ type?: TableType; /** * Specifies a property name by which queries will perform ordering by default when fetching rows. */ orderBy?: OrderByCondition; }