typescript 5.9.0-dev.20250706 → 5.9.0-dev.20250708
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/_tsc.js +1 -1
- package/lib/lib.es5.d.ts +6 -2
- package/lib/typescript.js +1 -1
- package/package.json +2 -2
package/lib/_tsc.js
CHANGED
@@ -18,7 +18,7 @@ and limitations under the License.
|
|
18
18
|
|
19
19
|
// src/compiler/corePublic.ts
|
20
20
|
var versionMajorMinor = "5.9";
|
21
|
-
var version = `${versionMajorMinor}.0-dev.
|
21
|
+
var version = `${versionMajorMinor}.0-dev.20250708`;
|
22
22
|
|
23
23
|
// src/compiler/core.ts
|
24
24
|
var emptyArray = [];
|
package/lib/lib.es5.d.ts
CHANGED
@@ -1396,14 +1396,18 @@ interface Array<T> {
|
|
1396
1396
|
/**
|
1397
1397
|
* Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
|
1398
1398
|
* @param start The zero-based location in the array from which to start removing elements.
|
1399
|
-
* @param deleteCount The number of elements to remove.
|
1399
|
+
* @param deleteCount The number of elements to remove. Omitting this argument will remove all elements from the start
|
1400
|
+
* paramater location to end of the array. If value of this argument is either a negative number, zero, undefined, or a type
|
1401
|
+
* that cannot be converted to an integer, the function will evaluate the argument as zero and not remove any elements.
|
1400
1402
|
* @returns An array containing the elements that were deleted.
|
1401
1403
|
*/
|
1402
1404
|
splice(start: number, deleteCount?: number): T[];
|
1403
1405
|
/**
|
1404
1406
|
* Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
|
1405
1407
|
* @param start The zero-based location in the array from which to start removing elements.
|
1406
|
-
* @param deleteCount The number of elements to remove.
|
1408
|
+
* @param deleteCount The number of elements to remove. If value of this argument is either a negative number, zero,
|
1409
|
+
* undefined, or a type that cannot be converted to an integer, the function will evaluate the argument as zero and
|
1410
|
+
* not remove any elements.
|
1407
1411
|
* @param items Elements to insert into the array in place of the deleted elements.
|
1408
1412
|
* @returns An array containing the elements that were deleted.
|
1409
1413
|
*/
|
package/lib/typescript.js
CHANGED
@@ -2285,7 +2285,7 @@ module.exports = __toCommonJS(typescript_exports);
|
|
2285
2285
|
|
2286
2286
|
// src/compiler/corePublic.ts
|
2287
2287
|
var versionMajorMinor = "5.9";
|
2288
|
-
var version = `${versionMajorMinor}.0-dev.
|
2288
|
+
var version = `${versionMajorMinor}.0-dev.20250708`;
|
2289
2289
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
2290
2290
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
2291
2291
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "typescript",
|
3
3
|
"author": "Microsoft Corp.",
|
4
4
|
"homepage": "https://www.typescriptlang.org/",
|
5
|
-
"version": "5.9.0-dev.
|
5
|
+
"version": "5.9.0-dev.20250708",
|
6
6
|
"license": "Apache-2.0",
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
8
8
|
"keywords": [
|
@@ -116,5 +116,5 @@
|
|
116
116
|
"node": "20.1.0",
|
117
117
|
"npm": "8.19.4"
|
118
118
|
},
|
119
|
-
"gitHead": "
|
119
|
+
"gitHead": "87740bc7fe3d8d2af47d767db081491f40b8a90d"
|
120
120
|
}
|