Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMestery <mestery@pm.me>2021-10-11 19:08:34 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2021-10-28 10:52:29 +0300
commitb66a75a3a4361614dde9bc1a52d7e9021b4efc26 (patch)
tree51a71c288f7e2cb46d29201187ee116a440e2a53 /typings/globals.d.ts
parent3ff8c355c892dca5cf044543f6bbfd6b1a129693 (diff)
typings: improve internal bindings typings
PR-URL: https://github.com/nodejs/node/pull/40411 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'typings/globals.d.ts')
-rw-r--r--typings/globals.d.ts13
1 files changed, 12 insertions, 1 deletions
diff --git a/typings/globals.d.ts b/typings/globals.d.ts
index 5d849b28b66..182284aa342 100644
--- a/typings/globals.d.ts
+++ b/typings/globals.d.ts
@@ -1 +1,12 @@
-declare type TypedArray = Uint16Array | Uint32Array | Uint8Array | Uint8ClampedArray | Int16Array | Int32Array | Int8Array | BigInt64Array | Float32Array | Float64Array | BigUint64Array;
+declare type TypedArray =
+ | Uint8Array
+ | Uint8ClampedArray
+ | Uint16Array
+ | Uint32Array
+ | Int8Array
+ | Int16Array
+ | Int32Array
+ | Float32Array
+ | Float64Array
+ | BigUint64Array
+ | BigInt64Array;