UNPKG

from-schema

Version:

Infer TypeScript types from JSON schemas

8 lines (6 loc) 213 B
import { PostgresColumnBase } from '../../PostgresColumnBase'; export type TimeColumnModel = PostgresColumnBase & { readonly type: 'time'; readonly timezone?: boolean; readonly precision?: number; };