Classify
t
RESCRIPT
type t =
| Bool(bool)
| Null
| String(string)
| Number(float)
| Object(dict<t>)
| Array(array<t>)A type representing a JavaScript type.
classify
Deprecated
Directly switch on the JSON object instead
RESCRIPT
let classify: 'a => t