@typescript-deploys/pr-build 5.1.0-pr-53995-22 → 5.1.0-pr-54047-7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/lib.es5.d.ts CHANGED
@@ -4329,12 +4329,21 @@ interface Float64Array {
4329
4329
  sort(compareFn?: (a: number, b: number) => number): this;
4330
4330
 
4331
4331
  /**
4332
+ * Gets a new Float64Array view of the ArrayBuffer store for this array, referencing the elements
4332
4333
  * at begin, inclusive, up to end, exclusive.
4333
4334
  * @param begin The index of the beginning of the array.
4334
4335
  * @param end The index of the end of the array.
4335
4336
  */
4336
4337
  subarray(begin?: number, end?: number): Float64Array;
4337
4338
 
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
+ */
4338
4347
  toString(): string;
4339
4348
 
4340
4349
  /** Returns the primitive value of the specified object. */
@@ -4383,11 +4392,12 @@ declare var Float64Array: Float64ArrayConstructor;
4383
4392
 
4384
4393
  declare namespace Intl {
4385
4394
  interface CollatorOptions {
4386
- usage?: string | undefined;
4387
- localeMatcher?: string | undefined;
4395
+ usage?: "sort" | "search" | undefined;
4396
+ localeMatcher?: "lookup" | "best fit" | undefined;
4388
4397
  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;
4391
4401
  ignorePunctuation?: boolean | undefined;
4392
4402
  }
4393
4403