summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.es2020.bigint.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc/dts/lib.es2020.bigint.d.ts')
-rw-r--r--cli/tsc/dts/lib.es2020.bigint.d.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/cli/tsc/dts/lib.es2020.bigint.d.ts b/cli/tsc/dts/lib.es2020.bigint.d.ts
index 73df22e21..d6b04d7a9 100644
--- a/cli/tsc/dts/lib.es2020.bigint.d.ts
+++ b/cli/tsc/dts/lib.es2020.bigint.d.ts
@@ -389,9 +389,9 @@ interface BigInt64Array {
interface BigInt64ArrayConstructor {
readonly prototype: BigInt64Array;
- new(length?: number): BigInt64Array;
- new(array: Iterable<bigint>): BigInt64Array;
- new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array;
+ new (length?: number): BigInt64Array;
+ new (array: Iterable<bigint>): BigInt64Array;
+ new (buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array;
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
@@ -661,9 +661,9 @@ interface BigUint64Array {
interface BigUint64ArrayConstructor {
readonly prototype: BigUint64Array;
- new(length?: number): BigUint64Array;
- new(array: Iterable<bigint>): BigUint64Array;
- new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array;
+ new (length?: number): BigUint64Array;
+ new (array: Iterable<bigint>): BigUint64Array;
+ new (buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array;
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
@@ -720,7 +720,7 @@ interface DataView {
setBigUint64(byteOffset: number, value: bigint, littleEndian?: boolean): void;
}
-declare namespace Intl{
+declare namespace Intl {
interface NumberFormat {
format(value: number | bigint): string;
resolvedOptions(): ResolvedNumberFormatOptions;