UNPKG

@chartshq/datamodel

Version:

An environment with `node`, `rustup` and `wasm-pack` set up.

7 lines (6 loc) 249 B
import { FieldSubtype } from '../../constants/fields'; interface FieldContract { _type: FieldSubtype; parse(val: string | number | undefined | null, format: string | Function): string | number | null | undefined; } export { FieldContract };