Skip to content

Commit fdd5cf2

Browse files
Bump version to 5.1.1-rc and LKG.
1 parent 704e766 commit fdd5cf2

File tree

10 files changed

+85531
-82503
lines changed

10 files changed

+85531
-82503
lines changed

lib/lib.es5.d.ts

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

43844393
declare 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

lib/tsc.js

Lines changed: 1187 additions & 619 deletions
Large diffs are not rendered by default.

lib/tsserver.js

Lines changed: 27359 additions & 26527 deletions
Large diffs are not rendered by default.

lib/tsserverlibrary.d.ts

Lines changed: 102 additions & 30 deletions
Large diffs are not rendered by default.

lib/tsserverlibrary.js

Lines changed: 28471 additions & 27628 deletions
Large diffs are not rendered by default.

lib/typescript.d.ts

Lines changed: 60 additions & 20 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)