UNPKG

from-schema

Version:

Infer TypeScript types from JSON schemas

6 lines (4 loc) 140 B
import { NumberBase } from './NumberBase'; export type BigIntColumnModel = NumberBase<bigint> & { readonly type: 'bigint' | 'int8'; };