How to make an `Int32Array<SharedArrayBuffer>`?
Doing
TypedArray.Int32
gives Int32Array<ArrayBufferLike>
but I want Int32Array<SharedArrayBuffer>
This probably applies to customizing any type of the int32 array but this is all I personally care about.6 Replies
I'll probably just do
But I would've figured there'd be a built in way.
This isn't possible yet but @etius is working on default parameters for generics that would enable this. Same for just
Array
Understandable limitation.
Actually kinda crazy that TS doesn't default
Array
to Array<unknown>
Agreed tbh
kinda annoying they don't have a "first-use inference" for cases like
Array
they talk all about how unused generics in a function are an anti-pattern
but then Array
, Set
, and all sorts of collections in the std-lib don't have guardrails against itYeah the
never[]
stuff feels pretty bad and is so easy to encounter as a new user