UNPKG

ts-toolbelt

Version:

TypeScript's largest utility library

8 lines (7 loc) 194 B
import { Primitive } from './Primitive'; import { List } from './Array'; import { Object } from './Object'; /** * Any JSON data/value */ export declare type Value = Primitive | Object | List;