server/packages/federation/types.ts

12 lines
183 B
TypeScript
Raw Normal View History

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