import { TimeZoneHandling } from "../../Common/Type"; import { TimeSpan } from "../../Data/TimeSpan"; import { IColumnOption } from "./IColumnOption"; import { TimeColumnType } from "../../Common/ColumnType"; export interface ITimeColumnOption extends IColumnOption { columnType?: TimeColumnType; precision?: number; timeZoneHandling?: TimeZoneHandling; }