summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.es2022.sharedmemory.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.es2022.sharedmemory.d.ts')
-rw-r--r--cli/tsc/dts/lib.es2022.sharedmemory.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tsc/dts/lib.es2022.sharedmemory.d.ts b/cli/tsc/dts/lib.es2022.sharedmemory.d.ts
index 5126a4b58..ea67b0081 100644
--- a/cli/tsc/dts/lib.es2022.sharedmemory.d.ts
+++ b/cli/tsc/dts/lib.es2022.sharedmemory.d.ts
@@ -25,7 +25,7 @@ interface Atomics {
* @param value The expected value to test.
* @param [timeout] The expected value to test.
*/
- waitAsync(typedArray: Int32Array, index: number, value: number, timeout?: number): { async: false, value: "not-equal" | "timed-out" } | { async: true, value: Promise<"ok" | "timed-out"> };
+ waitAsync(typedArray: Int32Array, index: number, value: number, timeout?: number): { async: false; value: "not-equal" | "timed-out"; } | { async: true; value: Promise<"ok" | "timed-out">; };
/**
* A non-blocking, asynchronous version of wait which is usable on the main thread.
@@ -35,5 +35,5 @@ interface Atomics {
* @param value The expected value to test.
* @param [timeout] The expected value to test.
*/
- waitAsync(typedArray: BigInt64Array, index: number, value: bigint, timeout?: number): { async: false, value: "not-equal" | "timed-out" } | { async: true, value: Promise<"ok" | "timed-out"> };
+ waitAsync(typedArray: BigInt64Array, index: number, value: bigint, timeout?: number): { async: false; value: "not-equal" | "timed-out"; } | { async: true; value: Promise<"ok" | "timed-out">; };
}