import { BinaryColumnType } from "../../Common/ColumnType"; import { IColumnOption } from "./IColumnOption"; import { GenericType } from "../../Common/Type"; export interface IBinaryColumnOption extends IColumnOption { columnType?: BinaryColumnType; size?: number; type?: GenericType; }