Merge pull request #9405 from zspitz/patch-1

getVarDate should be on the Date interface
This commit is contained in:
Mohamed Hegazy
2016-06-29 01:11:14 -07:00
committed by GitHub

View File

@@ -284,5 +284,8 @@ interface VarDate { }
interface DateConstructor {
new (vd: VarDate): Date;
}
interface Date {
getVarDate: () => VarDate;
}
}