UNPKG

from-schema

Version:

Infer TypeScript types from JSON schemas

8 lines (6 loc) 221 B
import { JsonSchema } from '../../json'; import { PostgresColumnBase } from '../PostgresColumnBase'; export type JsonbColumnModel = PostgresColumnBase & { readonly type: 'jsonb'; readonly schema?: JsonSchema; };