typescript 5.6.0-dev.20240621 → 5.6.0-dev.20240622
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.es2017.object.d.ts +4 -4
- package/lib/tsc.js +1 -1
- package/lib/typescript.d.ts +1 -0
- package/lib/typescript.js +2 -2
- package/package.json +2 -2
|
@@ -18,25 +18,25 @@ and limitations under the License.
|
|
|
18
18
|
|
|
19
19
|
interface ObjectConstructor {
|
|
20
20
|
/**
|
|
21
|
-
* Returns an array of values of the enumerable properties of an object
|
|
21
|
+
* Returns an array of values of the enumerable own properties of an object
|
|
22
22
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
23
23
|
*/
|
|
24
24
|
values<T>(o: { [s: string]: T; } | ArrayLike<T>): T[];
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
|
-
* Returns an array of values of the enumerable properties of an object
|
|
27
|
+
* Returns an array of values of the enumerable own properties of an object
|
|
28
28
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
29
29
|
*/
|
|
30
30
|
values(o: {}): any[];
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
|
-
* Returns an array of key/values of the enumerable properties of an object
|
|
33
|
+
* Returns an array of key/values of the enumerable own properties of an object
|
|
34
34
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
35
35
|
*/
|
|
36
36
|
entries<T>(o: { [s: string]: T; } | ArrayLike<T>): [string, T][];
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
|
-
* Returns an array of key/values of the enumerable properties of an object
|
|
39
|
+
* Returns an array of key/values of the enumerable own properties of an object
|
|
40
40
|
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
|
|
41
41
|
*/
|
|
42
42
|
entries(o: {}): [string, any][];
|
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.6";
|
|
21
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
21
|
+
var version = `${versionMajorMinor}.0-dev.20240622`;
|
|
22
22
|
|
|
23
23
|
// src/compiler/core.ts
|
|
24
24
|
var emptyArray = [];
|
package/lib/typescript.d.ts
CHANGED
package/lib/typescript.js
CHANGED
|
@@ -2377,7 +2377,7 @@ module.exports = __toCommonJS(typescript_exports);
|
|
|
2377
2377
|
|
|
2378
2378
|
// src/compiler/corePublic.ts
|
|
2379
2379
|
var versionMajorMinor = "5.6";
|
|
2380
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
2380
|
+
var version = `${versionMajorMinor}.0-dev.20240622`;
|
|
2381
2381
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
2382
2382
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
2383
2383
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -189954,7 +189954,7 @@ var Session3 = class _Session {
|
|
|
189954
189954
|
}
|
|
189955
189955
|
}
|
|
189956
189956
|
sendRequestCompletedEvent(requestId) {
|
|
189957
|
-
this.event({ request_seq: requestId }, "requestCompleted");
|
|
189957
|
+
this.event({ request_seq: requestId, performanceData: this.performanceData }, "requestCompleted");
|
|
189958
189958
|
}
|
|
189959
189959
|
addPerformanceData(key, value) {
|
|
189960
189960
|
if (!this.performanceData) {
|
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.6.0-dev.
|
|
5
|
+
"version": "5.6.0-dev.20240622",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"description": "TypeScript is a language for application scale JavaScript development",
|
|
8
8
|
"keywords": [
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"node": "20.1.0",
|
|
111
111
|
"npm": "8.19.4"
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "5d70bf894efe9014d24d4ba439807311e5b33fb8"
|
|
114
114
|
}
|