UNPKG

@pezzo/client

Version:

TypeScript API client for Pezzo

7 lines (6 loc) 300 B
export type Primitive = string | boolean | number; export type RecursiveObject<T> = { [key: string]: T | RecursiveObject<T>; }; export type RecursiveArray<T> = Array<T | RecursiveArray<T>>; export type AllPrimitiveTypes = Primitive | RecursiveObject<Primitive> | RecursiveArray<Primitive>;