This is Uint32Array<ArrayBuffer> (as opposed to Uint32Array<SharedArrayBuffer> and Uint32Array<ArrayBufferLike>) on TypeScript versions that support that distinction.
Uint32Array<ArrayBuffer>
Uint32Array<SharedArrayBuffer>
Uint32Array<ArrayBufferLike>
On TypeScript < 5.7, this is just Uint32Array, as it's not a template there.
Uint32Array
This is
Uint32Array<ArrayBuffer>(as opposed toUint32Array<SharedArrayBuffer>andUint32Array<ArrayBufferLike>) on TypeScript versions that support that distinction.On TypeScript < 5.7, this is just
Uint32Array, as it's not a template there.