UNPKG

parse-server-schema-manager

Version:
8 lines (7 loc) 189 B
export type JSONValue = string | number | boolean | JSONObject | JSONArray; interface JSONObject { [x: string]: JSONValue; } interface JSONArray extends Array<JSONValue> { } export {};