mirror of
https://github.com/versia-pub/server.git
synced 2026-04-27 20:59:15 +02:00
11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
type JSONValue =
|
|
| string
|
|
| number
|
|
| boolean
|
|
| null
|
|
| JSONValue[]
|
|
| { [key: string]: JSONValue };
|
|
|
|
export interface JSONObject {
|
|
[k: string]: JSONValue;
|
|
}
|