@typescript-deploys/pr-build 5.5.0-pr-57996-3 → 5.5.0-pr-58025-3
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/README.md +1 -1
- package/lib/lib.es5.d.ts +1 -1
- package/lib/tsc.js +200 -128
- package/lib/typescript.d.ts +225 -0
- package/lib/typescript.js +340 -251
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://github.com/microsoft/TypeScript/actions?query=workflow%3ACI)
|
|
5
5
|
[](https://www.npmjs.com/package/typescript)
|
|
6
6
|
[](https://www.npmjs.com/package/typescript)
|
|
7
|
-
[](https://
|
|
7
|
+
[](https://securityscorecards.dev/viewer/?uri=github.com/microsoft/TypeScript)
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescript).
|
package/lib/lib.es5.d.ts
CHANGED
|
@@ -818,7 +818,7 @@ interface Date {
|
|
|
818
818
|
getMilliseconds(): number;
|
|
819
819
|
/** Gets the milliseconds of a Date object using Universal Coordinated Time (UTC). */
|
|
820
820
|
getUTCMilliseconds(): number;
|
|
821
|
-
/** Gets the difference in minutes between the time on the local computer
|
|
821
|
+
/** Gets the difference in minutes between Universal Coordinated Time (UTC) and the time on the local computer. */
|
|
822
822
|
getTimezoneOffset(): number;
|
|
823
823
|
/**
|
|
824
824
|
* Sets the date and time value in the Date object.
|