.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-tsserver / node_modules / typescript / lib / lib.es5.d.ts
index 48beead1ab5dbb3d43cb7436e3cc7f9f232d533a..76564c9c6f52c930956c3308de2afe3f9a830ae2 100644 (file)
@@ -1067,7 +1067,7 @@ interface JSON {
     /**\r
      * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\r
      * @param value A JavaScript value, usually an object or array, to be converted.\r
-     * @param replacer An array of strings and numbers that acts as a approved list for selecting the object properties that will be stringified.\r
+     * @param replacer An array of strings and numbers that acts as an approved list for selecting the object properties that will be stringified.\r
      * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\r
      */\r
     stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string;\r
@@ -1131,22 +1131,31 @@ interface ReadonlyArray<T> {
     lastIndexOf(searchElement: T, fromIndex?: number): number;\r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
+     * If thisArg is omitted, undefined is used as the this value.\r
+     */\r
+    every<S extends T>(predicate: (value: T, index: number, array: readonly T[]) => value is S, thisArg?: any): this is readonly S[];\r
+    /**\r
+     * Determines whether all the members of an array satisfy the specified test.\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
+     * which is coercible to the Boolean value false, or until the end of the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): boolean;\r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): boolean;\r
     /**\r
      * Performs the specified action for each element in an array.\r
      * @param callbackfn  A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\r
@@ -1161,16 +1170,16 @@ interface ReadonlyArray<T> {
     map<U>(callbackfn: (value: T, index: number, array: readonly T[]) => U, thisArg?: any): U[];\r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter<S extends T>(callbackfn: (value: T, index: number, array: readonly T[]) => value is S, thisArg?: any): S[];\r
+    filter<S extends T>(predicate: (value: T, index: number, array: readonly T[]) => value is S, thisArg?: any): S[];\r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): T[];\r
+    filter(predicate: (value: T, index: number, array: readonly T[]) => unknown, thisArg?: any): T[];\r
     /**\r
      * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\r
      * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\r
@@ -1210,7 +1219,7 @@ interface ConcatArray<T> {
 \r
 interface Array<T> {\r
     /**\r
-     * Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.\r
+     * Gets or sets the length of the array. This is a number one higher than the highest index in the array.\r
      */\r
     length: number;\r
     /**\r
@@ -1223,44 +1232,54 @@ interface Array<T> {
     toLocaleString(): string;\r
     /**\r
      * Removes the last element from an array and returns it.\r
+     * If the array is empty, undefined is returned and the array is not modified.\r
      */\r
     pop(): T | undefined;\r
     /**\r
-     * Appends new elements to an array, and returns the new length of the array.\r
-     * @param items New elements of the Array.\r
+     * Appends new elements to the end of an array, and returns the new length of the array.\r
+     * @param items New elements to add to the array.\r
      */\r
     push(...items: T[]): number;\r
     /**\r
      * Combines two or more arrays.\r
-     * @param items Additional items to add to the end of array1.\r
+     * This method returns a new array without modifying any existing arrays.\r
+     * @param items Additional arrays and/or items to add to the end of the array.\r
      */\r
     concat(...items: ConcatArray<T>[]): T[];\r
     /**\r
      * Combines two or more arrays.\r
-     * @param items Additional items to add to the end of array1.\r
+     * This method returns a new array without modifying any existing arrays.\r
+     * @param items Additional arrays and/or items to add to the end of the array.\r
      */\r
     concat(...items: (T | ConcatArray<T>)[]): T[];\r
     /**\r
-     * Adds all the elements of an array separated by the specified separator string.\r
-     * @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.\r
+     * Adds all the elements of an array into a string, separated by the specified separator string.\r
+     * @param separator A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.\r
      */\r
     join(separator?: string): string;\r
     /**\r
-     * Reverses the elements in an Array.\r
+     * Reverses the elements in an array in place.\r
+     * This method mutates the array and returns a reference to the same array.\r
      */\r
     reverse(): T[];\r
     /**\r
      * Removes the first element from an array and returns it.\r
+     * If the array is empty, undefined is returned and the array is not modified.\r
      */\r
     shift(): T | undefined;\r
     /**\r
-     * Returns a section of an array.\r
-     * @param start The beginning of the specified portion of the array.\r
-     * @param end The end of the specified portion of the array. This is exclusive of the element at the index 'end'.\r
+     * Returns a copy of a section of an array.\r
+     * For both start and end, a negative index can be used to indicate an offset from the end of the array.\r
+     * For example, -2 refers to the second to last element of the array.\r
+     * @param start The beginning index of the specified portion of the array.\r
+     * If start is undefined, then the slice begins at index 0.\r
+     * @param end The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.\r
+     * If end is undefined, then the slice extends to the end of the array.\r
      */\r
     slice(start?: number, end?: number): T[];\r
     /**\r
-     * Sorts an array.\r
+     * Sorts an array in place.\r
+     * This method mutates the array and returns a reference to the same array.\r
      * @param compareFn Function used to determine the order of the elements. It is expected to return\r
      * a negative value if first argument is less than second argument, zero if they're equal and a positive\r
      * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.\r
@@ -1273,6 +1292,7 @@ interface Array<T> {
      * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\r
      * @param start The zero-based location in the array from which to start removing elements.\r
      * @param deleteCount The number of elements to remove.\r
+     * @returns An array containing the elements that were deleted.\r
      */\r
     splice(start: number, deleteCount?: number): T[];\r
     /**\r
@@ -1280,43 +1300,53 @@ interface Array<T> {
      * @param start The zero-based location in the array from which to start removing elements.\r
      * @param deleteCount The number of elements to remove.\r
      * @param items Elements to insert into the array in place of the deleted elements.\r
+     * @returns An array containing the elements that were deleted.\r
      */\r
     splice(start: number, deleteCount: number, ...items: T[]): T[];\r
     /**\r
-     * Inserts new elements at the start of an array.\r
-     * @param items  Elements to insert at the start of the Array.\r
+     * Inserts new elements at the start of an array, and returns the new length of the array.\r
+     * @param items Elements to insert at the start of the array.\r
      */\r
     unshift(...items: T[]): number;\r
     /**\r
-     * Returns the index of the first occurrence of a value in an array.\r
+     * Returns the index of the first occurrence of a value in an array, or -1 if it is not present.\r
      * @param searchElement The value to locate in the array.\r
      * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.\r
      */\r
     indexOf(searchElement: T, fromIndex?: number): number;\r
     /**\r
-     * Returns the index of the last occurrence of a specified value in an array.\r
+     * Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.\r
      * @param searchElement The value to locate in the array.\r
-     * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.\r
+     * @param fromIndex The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.\r
      */\r
     lastIndexOf(searchElement: T, fromIndex?: number): number;\r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;\r
+    every<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): this is S[];\r
+    /**\r
+     * Determines whether all the members of an array satisfy the specified test.\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
+     * which is coercible to the Boolean value false, or until the end of the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
+     * If thisArg is omitted, undefined is used as the this value.\r
+     */\r
+    every(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;\r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;\r
     /**\r
      * Performs the specified action for each element in an array.\r
      * @param callbackfn  A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.\r
@@ -1331,16 +1361,16 @@ interface Array<T> {
     map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];\r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter<S extends T>(callbackfn: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];\r
+    filter<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];\r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T[];\r
+    filter(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T[];\r
     /**\r
      * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.\r
      * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.\r
@@ -1398,7 +1428,7 @@ declare type PropertyDecorator = (target: Object, propertyKey: string | symbol)
 declare type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;\r
 declare type ParameterDecorator = (target: Object, propertyKey: string | symbol, parameterIndex: number) => void;\r
 \r
-declare type PromiseConstructorLike = new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;\r
+declare type PromiseConstructorLike = new <T>(executor: (resolve: (value: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void) => PromiseLike<T>;\r
 \r
 interface PromiseLike<T> {\r
     /**\r
@@ -1510,6 +1540,26 @@ type ReturnType<T extends (...args: any) => any> = T extends (...args: any) => i
  */\r
 type InstanceType<T extends new (...args: any) => any> = T extends new (...args: any) => infer R ? R : any;\r
 \r
+/**\r
+ * Convert string literal type to uppercase\r
+ */\r
+type Uppercase<S extends string> = intrinsic;\r
+\r
+/**\r
+ * Convert string literal type to lowercase\r
+ */\r
+type Lowercase<S extends string> = intrinsic;\r
+\r
+/**\r
+ * Convert first character of string literal type to uppercase\r
+ */\r
+type Capitalize<S extends string> = intrinsic;\r
+\r
+/**\r
+ * Convert first character of string literal type to lowercase\r
+ */\r
+type Uncapitalize<S extends string> = intrinsic;\r
+\r
 /**\r
  * Marker for contextual 'this' type\r
  */\r
@@ -1694,6 +1744,7 @@ interface DataView {
 }\r
 \r
 interface DataViewConstructor {\r
+    readonly prototype: DataView;\r
     new(buffer: ArrayBufferLike, byteOffset?: number, byteLength?: number): DataView;\r
 }\r
 declare var DataView: DataViewConstructor;\r
@@ -1736,13 +1787,13 @@ interface Int8Array {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Int8Array) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Int8Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -1756,12 +1807,12 @@ interface Int8Array {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Int8Array) => any, thisArg?: any): Int8Array;\r
+    filter(predicate: (value: number, index: number, array: Int8Array) => any, thisArg?: any): Int8Array;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -1903,13 +1954,13 @@ interface Int8Array {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Int8Array) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Int8Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -1948,8 +1999,8 @@ interface Int8Array {
 interface Int8ArrayConstructor {\r
     readonly prototype: Int8Array;\r
     new(length: number): Int8Array;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Int8Array;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Int8Array;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Int8Array;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int8Array;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -2018,13 +2069,13 @@ interface Uint8Array {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Uint8Array) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Uint8Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -2038,12 +2089,12 @@ interface Uint8Array {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Uint8Array) => any, thisArg?: any): Uint8Array;\r
+    filter(predicate: (value: number, index: number, array: Uint8Array) => any, thisArg?: any): Uint8Array;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -2185,13 +2236,13 @@ interface Uint8Array {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Uint8Array) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Uint8Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -2231,8 +2282,8 @@ interface Uint8Array {
 interface Uint8ArrayConstructor {\r
     readonly prototype: Uint8Array;\r
     new(length: number): Uint8Array;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Uint8Array;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Uint8Array;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Uint8Array;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint8Array;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -2300,13 +2351,13 @@ interface Uint8ClampedArray {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Uint8ClampedArray) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -2320,12 +2371,12 @@ interface Uint8ClampedArray {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => any, thisArg?: any): Uint8ClampedArray;\r
+    filter(predicate: (value: number, index: number, array: Uint8ClampedArray) => any, thisArg?: any): Uint8ClampedArray;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -2467,13 +2518,13 @@ interface Uint8ClampedArray {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Uint8ClampedArray) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Uint8ClampedArray) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -2513,8 +2564,8 @@ interface Uint8ClampedArray {
 interface Uint8ClampedArrayConstructor {\r
     readonly prototype: Uint8ClampedArray;\r
     new(length: number): Uint8ClampedArray;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Uint8ClampedArray;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Uint8ClampedArray;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Uint8ClampedArray;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint8ClampedArray;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -2581,13 +2632,13 @@ interface Int16Array {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Int16Array) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Int16Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -2601,12 +2652,12 @@ interface Int16Array {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Int16Array) => any, thisArg?: any): Int16Array;\r
+    filter(predicate: (value: number, index: number, array: Int16Array) => any, thisArg?: any): Int16Array;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -2747,13 +2798,13 @@ interface Int16Array {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Int16Array) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Int16Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -2793,8 +2844,8 @@ interface Int16Array {
 interface Int16ArrayConstructor {\r
     readonly prototype: Int16Array;\r
     new(length: number): Int16Array;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Int16Array;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Int16Array;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Int16Array;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int16Array;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -2863,13 +2914,13 @@ interface Uint16Array {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Uint16Array) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Uint16Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -2883,12 +2934,12 @@ interface Uint16Array {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Uint16Array) => any, thisArg?: any): Uint16Array;\r
+    filter(predicate: (value: number, index: number, array: Uint16Array) => any, thisArg?: any): Uint16Array;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -3030,13 +3081,13 @@ interface Uint16Array {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Uint16Array) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Uint16Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -3076,8 +3127,8 @@ interface Uint16Array {
 interface Uint16ArrayConstructor {\r
     readonly prototype: Uint16Array;\r
     new(length: number): Uint16Array;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Uint16Array;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Uint16Array;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Uint16Array;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint16Array;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -3145,13 +3196,13 @@ interface Int32Array {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Int32Array) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Int32Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -3165,12 +3216,12 @@ interface Int32Array {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Int32Array) => any, thisArg?: any): Int32Array;\r
+    filter(predicate: (value: number, index: number, array: Int32Array) => any, thisArg?: any): Int32Array;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -3312,13 +3363,13 @@ interface Int32Array {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Int32Array) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Int32Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -3358,8 +3409,8 @@ interface Int32Array {
 interface Int32ArrayConstructor {\r
     readonly prototype: Int32Array;\r
     new(length: number): Int32Array;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Int32Array;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Int32Array;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Int32Array;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Int32Array;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -3427,13 +3478,13 @@ interface Uint32Array {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Uint32Array) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Uint32Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -3447,12 +3498,12 @@ interface Uint32Array {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Uint32Array) => any, thisArg?: any): Uint32Array;\r
+    filter(predicate: (value: number, index: number, array: Uint32Array) => any, thisArg?: any): Uint32Array;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -3593,13 +3644,13 @@ interface Uint32Array {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Uint32Array) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Uint32Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -3639,8 +3690,8 @@ interface Uint32Array {
 interface Uint32ArrayConstructor {\r
     readonly prototype: Uint32Array;\r
     new(length: number): Uint32Array;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Uint32Array;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Uint32Array;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Uint32Array;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Uint32Array;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -3708,13 +3759,13 @@ interface Float32Array {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Float32Array) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Float32Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -3728,12 +3779,12 @@ interface Float32Array {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Float32Array) => any, thisArg?: any): Float32Array;\r
+    filter(predicate: (value: number, index: number, array: Float32Array) => any, thisArg?: any): Float32Array;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -3875,13 +3926,13 @@ interface Float32Array {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Float32Array) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Float32Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -3921,8 +3972,8 @@ interface Float32Array {
 interface Float32ArrayConstructor {\r
     readonly prototype: Float32Array;\r
     new(length: number): Float32Array;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Float32Array;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Float32Array;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Float32Array;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float32Array;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -3991,13 +4042,13 @@ interface Float64Array {
 \r
     /**\r
      * Determines whether all the members of an array satisfy the specified test.\r
-     * @param callbackfn A function that accepts up to three arguments. The every method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The every method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value false, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    every(callbackfn: (value: number, index: number, array: Float64Array) => unknown, thisArg?: any): boolean;\r
+    every(predicate: (value: number, index: number, array: Float64Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Returns the this object after filling the section identified by start and end with value\r
@@ -4011,12 +4062,12 @@ interface Float64Array {
 \r
     /**\r
      * Returns the elements of an array that meet the condition specified in a callback function.\r
-     * @param callbackfn A function that accepts up to three arguments. The filter method calls\r
-     * the callbackfn function one time for each element in the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param predicate A function that accepts up to three arguments. The filter method calls\r
+     * the predicate function one time for each element in the array.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    filter(callbackfn: (value: number, index: number, array: Float64Array) => any, thisArg?: any): Float64Array;\r
+    filter(predicate: (value: number, index: number, array: Float64Array) => any, thisArg?: any): Float64Array;\r
 \r
     /**\r
      * Returns the value of the first element in the array where predicate is true, and undefined\r
@@ -4158,13 +4209,13 @@ interface Float64Array {
 \r
     /**\r
      * Determines whether the specified callback function returns true for any element of an array.\r
-     * @param callbackfn A function that accepts up to three arguments. The some method calls\r
-     * the callbackfn function for each element in the array until the callbackfn returns a value\r
+     * @param predicate A function that accepts up to three arguments. The some method calls\r
+     * the predicate function for each element in the array until the predicate returns a value\r
      * which is coercible to the Boolean value true, or until the end of the array.\r
-     * @param thisArg An object to which the this keyword can refer in the callbackfn function.\r
+     * @param thisArg An object to which the this keyword can refer in the predicate function.\r
      * If thisArg is omitted, undefined is used as the this value.\r
      */\r
-    some(callbackfn: (value: number, index: number, array: Float64Array) => unknown, thisArg?: any): boolean;\r
+    some(predicate: (value: number, index: number, array: Float64Array) => unknown, thisArg?: any): boolean;\r
 \r
     /**\r
      * Sorts an array.\r
@@ -4195,8 +4246,8 @@ interface Float64Array {
 interface Float64ArrayConstructor {\r
     readonly prototype: Float64Array;\r
     new(length: number): Float64Array;\r
-    new(arrayOrArrayBuffer: ArrayLike<number> | ArrayBufferLike): Float64Array;\r
-    new(buffer: ArrayBufferLike, byteOffset: number, length?: number): Float64Array;\r
+    new(array: ArrayLike<number> | ArrayBufferLike): Float64Array;\r
+    new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float64Array;\r
 \r
     /**\r
      * The size in bytes of each element in the array.\r
@@ -4265,6 +4316,7 @@ declare namespace Intl {
         style?: string;\r
         currency?: string;\r
         currencyDisplay?: string;\r
+        currencySign?: string;\r
         useGrouping?: boolean;\r
         minimumIntegerDigits?: number;\r
         minimumFractionDigits?: number;\r
@@ -4298,17 +4350,17 @@ declare namespace Intl {
     };\r
 \r
     interface DateTimeFormatOptions {\r
-        localeMatcher?: string;\r
-        weekday?: string;\r
-        era?: string;\r
-        year?: string;\r
-        month?: string;\r
-        day?: string;\r
-        hour?: string;\r
-        minute?: string;\r
-        second?: string;\r
-        timeZoneName?: string;\r
-        formatMatcher?: string;\r
+        localeMatcher?: "best fit" | "lookup";\r
+        weekday?: "long" | "short" | "narrow";\r
+        era?: "long" | "short" | "narrow";\r
+        year?: "numeric" | "2-digit";\r
+        month?: "numeric" | "2-digit" | "long" | "short" | "narrow";\r
+        day?: "numeric" | "2-digit";\r
+        hour?: "numeric" | "2-digit";\r
+        minute?: "numeric" | "2-digit";\r
+        second?: "numeric" | "2-digit";\r
+        timeZoneName?: "long" | "short";\r
+        formatMatcher?: "best fit" | "basic";\r
         hour12?: boolean;\r
         timeZone?: string;\r
     }\r