Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
getVarDate should be on the Date interface
  • Loading branch information
zspitz authored Jun 28, 2016
commit 27e66b0bc85bc59d51dfb360b5581451a89c1e06
5 changes: 4 additions & 1 deletion src/lib/scripthost.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,5 +284,8 @@ interface VarDate { }

interface DateConstructor {
new (vd: VarDate): Date;
}

interface Date {
getVarDate: () => VarDate;
}
}