export type Primitive = string | boolean | number; export type RecursiveObject = { [key: string]: T | RecursiveObject; }; export type RecursiveArray = Array>; export type AllPrimitiveTypes = Primitive | RecursiveObject | RecursiveArray;