typescript 6.0.0-dev.20260217 → 6.0.0-dev.20260219
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 +2 -1
- package/lib/lib.dom.d.ts +829 -8
- package/lib/lib.esnext.temporal.d.ts +2 -4
- package/lib/lib.webworker.d.ts +808 -16
- package/lib/typescript.js +2 -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 = "6.0";
|
|
21
|
-
var version = `${versionMajorMinor}.0-dev.
|
|
21
|
+
var version = `${versionMajorMinor}.0-dev.20260219`;
|
|
22
22
|
|
|
23
23
|
// src/compiler/core.ts
|
|
24
24
|
var emptyArray = [];
|
|
@@ -115554,6 +115554,7 @@ function transformDeclarations(context) {
|
|
|
115554
115554
|
if (isOmittedExpression(elem)) continue;
|
|
115555
115555
|
if (isBindingPattern(elem.name)) {
|
|
115556
115556
|
elems = concatenate(elems, walkBindingPattern(elem.name));
|
|
115557
|
+
continue;
|
|
115557
115558
|
}
|
|
115558
115559
|
elems = elems || [];
|
|
115559
115560
|
elems.push(factory2.createPropertyDeclaration(
|