Skip to content

Commit a91978e

Browse files
authored
Merge pull request #9393 from zspitz/MSActiveXExtensions
Ms active x extensions
2 parents 6be7d9c + 3fdaf19 commit a91978e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Diff for: src/lib/scripthost.d.ts

+10
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)