Skip to content

Commit 3fdaf19

Browse files
committed
VarDate interface and relevant Date.prototype members
1 parent 3ea2cdd commit 3fdaf19

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/lib/scripthost.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,3 +276,13 @@ interface VBArrayConstructor {
276276
}
277277

278278
declare var VBArray: VBArrayConstructor;
279+
280+
/**
281+
* Automation date (VT_DATE)
282+
*/
283+
interface VarDate { }
284+
285+
interface DateConstructor {
286+
new (vd: VarDate): Date;
287+
getVarDate: () => VarDate;
288+
}

0 commit comments

Comments
 (0)