feat: improving infrastructure
This commit is contained in:
12
server/JSON.ts
Normal file
12
server/JSON.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
type JSONValue =
|
||||
| string
|
||||
| number
|
||||
| boolean
|
||||
| JSONObject
|
||||
| JSONArray;
|
||||
|
||||
type JSONArray = Array<JSONValue>;
|
||||
|
||||
export interface JSONObject {
|
||||
[x: string]: JSONValue;
|
||||
}
|
||||
Reference in New Issue
Block a user