Files
stocca-tre/server/JSON.ts
2022-06-30 08:33:13 +02:00

13 lines
188 B
TypeScript

type JSONValue =
| string
| number
| boolean
| JSONObject
| JSONArray;
type JSONArray = Array<JSONValue>;
export interface JSONObject {
[x: string]: JSONValue;
}