UNPKG

@tufjs/models

Version:
5 lines (4 loc) 145 B
export type JSONObject = { [key: string]: JSONValue; }; export type JSONValue = null | boolean | number | string | JSONValue[] | JSONObject;