UNPKG

from-schema

Version:

Infer TypeScript types from JSON schemas

8 lines (6 loc) 187 B
import { NumberBase } from './NumberBase'; export type NumericColumnModel = NumberBase & { readonly type: 'numeric'; readonly precision?: number; readonly scale?: number; };