Remix.run Logo
tomsmeding 11 hours ago

Well, it is the type of that, in TS syntax. Few are the statically-typed languages that can even express that type.

not_kurt_godel 7 hours ago | parent [-]

Java: List<Object>

Python: list[Any]

...what am I missing?

rjh29 3 hours ago | parent | next [-]

You're missing the specialisation of Object/Any. For example Array.flat called with [int, [bool, string]] returns a type [int, bool, string]. Admittedly this is somewhat niche, but most other languages can't express this - the type information gets erased.

sli 4 hours ago | parent | prev [-]

You're missing the input type, essentially. Those are just array types. The TypeScript type signature more of a function type, it expresses flattening a n-dimensional array (input type) into a flat array (output type).