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.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/tsc/dts/lib.es2020.bigint.d.ts b/cli/tsc/dts/lib.es2020.bigint.d.ts
index d6b04d7a9..4b8939601 100644
--- a/cli/tsc/dts/lib.es2020.bigint.d.ts
+++ b/cli/tsc/dts/lib.es2020.bigint.d.ts
@@ -369,7 +369,7 @@ interface BigInt64Array {
subarray(begin?: number, end?: number): BigInt64Array;
/** Converts the array to a string by using the current locale. */
- toLocaleString(): string;
+ toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;
/** Returns a string representation of the array. */
toString(): string;
@@ -641,7 +641,7 @@ interface BigUint64Array {
subarray(begin?: number, end?: number): BigUint64Array;
/** Converts the array to a string by using the current locale. */
- toLocaleString(): string;
+ toLocaleString(locales?: string | string[], options?: Intl.NumberFormatOptions): string;
/** Returns a string representation of the array. */
toString(): string;
@@ -723,6 +723,5 @@ interface DataView {
declare namespace Intl {
interface NumberFormat {
format(value: number | bigint): string;
- resolvedOptions(): ResolvedNumberFormatOptions;
}
}