server/packages/sdk/types.ts
2025-04-08 21:54:55 +02:00

12 lines
183 B
TypeScript

type JSONValue =
| string
| number
| boolean
| null
| JSONValue[]
| { [key: string]: JSONValue };
export interface JSONObject {
[k: string]: JSONValue;
}