UNPKG

json-typescript

Version:

TypeScript type definitions for JSON objects

8 lines 258 B
export declare type Primitive = string | number | boolean | null; export interface Object { [member: string]: Value; } export interface Arr extends Array<Value> { } export declare type Value = Primitive | Object | Arr; //# sourceMappingURL=index.d.ts.map