UNPKG

@bjesuiter/serializr-helpers

Version:

Provides some helper functions and serialization PropertySchemas for mobxjs/serializr - library

7 lines (6 loc) 200 B
export declare type JsonValue = string | boolean | number | JsonObject | JsonArray; export interface JsonObject { [x: string]: JsonValue; } export interface JsonArray extends Array<JsonValue> { }