VarDate interface and relevant Date.prototype members

This commit is contained in:
Zev Spitz 2016-06-28 21:26:18 +02:00
parent 3ea2cddf65
commit 3fdaf194f7

View file

@ -276,3 +276,13 @@ interface VBArrayConstructor {
}
declare var VBArray: VBArrayConstructor;
/**
* Automation date (VT_DATE)
*/
interface VarDate { }
interface DateConstructor {
new (vd: VarDate): Date;
getVarDate: () => VarDate;
}