mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
455 B
TypeScript
16 lines
455 B
TypeScript
// Type definitions for Microsoft JScript extensions
|
|
// Project: https://msdn.microsoft.com/en-us/library/yek4tbz0(v=vs.84).aspx
|
|
// Definitions by: Zev Spitz <https://github.com/zspitz>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
//These will become unnecessary with the next version of Typescript
|
|
|
|
interface VarDate { }
|
|
|
|
interface DateConstructor {
|
|
new (vd: VarDate): Date;
|
|
}
|
|
|
|
interface Date {
|
|
getVarDate: () => VarDate;
|
|
} |