mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
12 lines
183 B
TypeScript
12 lines
183 B
TypeScript
type JSONValue =
|
|
| string
|
|
| number
|
|
| boolean
|
|
| null
|
|
| JSONValue[]
|
|
| { [key: string]: JSONValue };
|
|
|
|
export interface JSONObject {
|
|
[k: string]: JSONValue;
|
|
}
|