UNPKG

ts-json-simple

Version:

TypeScript package inspired by Java's JSONObject, providing a chainable API for JSON manipulation.

4 lines (3 loc) 152 B
import JSONArray from "./JSONArray"; import JSONObject from "./JSONObject"; export type JSONValue = string | number | boolean | JSONObject | JSONArray;