@typescript-deploys/pr-build 5.3.0-pr-54242-4 → 5.3.0-pr-55856-6
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.es5.d.ts +1 -9
- package/lib/tsc.js +236 -266
- package/lib/tsserver.js +394 -340
- package/lib/typescript.d.ts +88 -62
- package/lib/typescript.js +391 -335
- package/lib/typingsInstaller.js +81 -136
- package/package.json +2 -2
package/lib/lib.es5.d.ts
CHANGED
|
@@ -638,8 +638,7 @@ interface ImportMeta {
|
|
|
638
638
|
* augmented via interface merging.
|
|
639
639
|
*/
|
|
640
640
|
interface ImportCallOptions {
|
|
641
|
-
|
|
642
|
-
with?: ImportAttributes;
|
|
641
|
+
assert?: ImportAssertions;
|
|
643
642
|
}
|
|
644
643
|
|
|
645
644
|
/**
|
|
@@ -649,13 +648,6 @@ interface ImportAssertions {
|
|
|
649
648
|
[key: string]: string;
|
|
650
649
|
}
|
|
651
650
|
|
|
652
|
-
/**
|
|
653
|
-
* The type for the `with` property of the optional second argument to `import()`.
|
|
654
|
-
*/
|
|
655
|
-
interface ImportAttributes {
|
|
656
|
-
[key: string]: string;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
651
|
interface Math {
|
|
660
652
|
/** The mathematical constant e. This is Euler's number, the base of natural logarithms. */
|
|
661
653
|
readonly E: number;
|