From b66a75a3a4361614dde9bc1a52d7e9021b4efc26 Mon Sep 17 00:00:00 2001 From: Mestery Date: Mon, 11 Oct 2021 18:08:34 +0200 Subject: typings: improve internal bindings typings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/40411 Reviewed-By: Michaƫl Zasso Reviewed-By: James M Snell --- typings/globals.d.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'typings/globals.d.ts') 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; -- cgit v1.2.3