UNPKG

@odyssoft/tsorm

Version:
10 lines (9 loc) 206 B
import { DataType } from './'; export interface ColumnOptions { autoIncrement?: boolean; default?: any; primaryKey?: boolean; required?: boolean; unique?: boolean; type: DataType; }