UNPKG

from-schema

Version:

Infer TypeScript types from JSON schemas

8 lines (6 loc) 222 B
import { PostgresColumnBase } from '../PostgresColumnBase'; export type BooleanColumnModel = PostgresColumnBase & { type: 'boolean' | 'bool'; examples?: [true] | [false] | [true, false]; default?: boolean; };