@@ -4329,12 +4329,21 @@ interface Float64Array {
43294329 sort ( compareFn ?: ( a : number , b : number ) => number ) : this;
43304330
43314331 /**
4332+ * Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements
43324333 * at begin, inclusive, up to end, exclusive.
43334334 * @param begin The index of the beginning of the array.
43344335 * @param end The index of the end of the array.
43354336 */
43364337 subarray ( begin ?: number , end ?: number ) : Float64Array ;
43374338
4339+ /**
4340+ * Converts a number to a string by using the current locale.
4341+ */
4342+ toLocaleString ( ) : string ;
4343+
4344+ /**
4345+ * Returns a string representation of an array.
4346+ */
43384347 toString ( ) : string ;
43394348
43404349 /** Returns the primitive value of the specified object. */
@@ -4383,11 +4392,12 @@ declare var Float64Array: Float64ArrayConstructor;
43834392
43844393declare namespace Intl {
43854394 interface CollatorOptions {
4386- usage ?: string | undefined ;
4387- localeMatcher ?: string | undefined ;
4395+ usage ?: "sort" | "search" | undefined ;
4396+ localeMatcher ?: "lookup" | "best fit" | undefined ;
43884397 numeric ?: boolean | undefined ;
4389- caseFirst ?: string | undefined ;
4390- sensitivity ?: string | undefined ;
4398+ caseFirst ?: "upper" | "lower" | "false" | undefined ;
4399+ sensitivity ?: "base" | "accent" | "case" | "variant" | undefined ;
4400+ collation ?: "big5han" | "compat" | "dict" | "direct" | "ducet" | "emoji" | "eor" | "gb2312" | "phonebk" | "phonetic" | "pinyin" | "reformed" | "searchjl" | "stroke" | "trad" | "unihan" | "zhuyin" | undefined ;
43914401 ignorePunctuation ?: boolean | undefined ;
43924402 }
43934403
0 commit comments