API@unwind/class-nametypeTypeofStateOn this pagetype TypeofStateType utility that returns typeof state objectSignature:export type TypeofState<State> = UnionToIntersection<State extends EmptyObject ? 'EmptyObject' : State extends AnyObject ? 'AnyObject' : 'Other'>;ReferencesnionToIntersection](union-to-intersection)AnyObject