Improving Date.getTime documentation (#51365)

This commit is contained in:
Charlie Fish 2022-11-15 09:48:20 -07:00 committed by GitHub
parent 3431912175
commit 53ef2fc90d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
src/lib/es5.d.ts vendored
View File

@ -741,7 +741,7 @@ interface Date {
toLocaleTimeString(): string;
/** Returns the stored time value in milliseconds since midnight, January 1, 1970 UTC. */
valueOf(): number;
/** Gets the time value in milliseconds. */
/** Returns the stored time value in milliseconds since midnight, January 1, 1970 UTC. */
getTime(): number;
/** Gets the year, using local time. */
getFullYear(): number;