/** * Not nullish and not primitive */ export type Obj = { [key in any]: any; } | { [key in any]?: any; };