export type Primitive = string | boolean | number | null | undefined; export interface NestedRecord { [key: string]: Primitive | NestedRecord | NestedRecord[]; } export type commonType = Primitive | Primitive[] | NestedRecord | NestedRecord[]; //# sourceMappingURL=commonType.d.ts.map