lib Update Request
Missing / Incorrect Definition
Atomics.waitAsync is configured to only accept BigInt as the value, but according to MDN (and deno implementation) it accepts a number.
Sample Code
const sab = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024);
const int32 = new Int32Array(sab);
Atomics.waitAsync(int32, 0, 0);
Documentation Link
MDN | Atomics.waitAsync()