An object that could have any property, and that property could have any
value.
This can be used instead of any in places where you want to distinguish
the object from null, since any | null doesn't require null due to how
the any type works in TypeScript.
An object that could have any property, and that property could have any value.
This can be used instead of
any
in places where you want to distinguish the object fromnull
, sinceany | null
doesn't require null due to how theany
type works in TypeScript.