We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4872eb commit df77232Copy full SHA for df77232
src/lib/es2017.sharedmemory.d.ts
@@ -102,8 +102,11 @@ interface Atomics {
102
/**
103
* Wakes up sleeping agents that are waiting on the given index of the array, returning the
104
* number of agents that were awoken.
105
+ * @param typedArray A shared Int32Array.
106
+ * @param index The position in the typedArray to wake up on.
107
+ * @param count The number of sleeping agents to notify. Defaults to +Infinity.
108
*/
- notify(typedArray: Int32Array, index: number, count: number): number;
109
+ notify(typedArray: Int32Array, index: number, count?: number): number;
110
111
112
* Stores the bitwise XOR of a value with the value at the given position in the array,
0 commit comments