import { IntColumnType } from "../../Common/ColumnType"; import { IColumnOption } from "./IColumnOption"; export interface INumericColumnOption extends IColumnOption { autoIncrement?: boolean; length?: number; columnType?: IntColumnType; }