UNPKG

wfm-mobile-core

Version:

WFM Mobile Core

7 lines (6 loc) 197 B
export declare type AnyJson = boolean | number | string | null | JsonArray | JsonMap; export interface JsonMap { [key: string]: AnyJson; } export interface JsonArray extends Array<AnyJson> { }