Fixes 'Generic type references must include all type arguments.' for moment.d.ts.

This commit is contained in:
Natan Vivo
2013-11-20 08:31:37 -02:00
parent 0adc5ee957
commit c85243194d
+2 -2
View File
@@ -168,14 +168,14 @@ interface Moment {
max(date: Date): Moment;
max(date: number): Moment;
max(date: Array): Moment;
max(date: any[]): Moment;
max(date: string): Moment;
max(date: string, format: string): Moment;
max(clone: Moment): Moment;
min(date: Date): Moment;
min(date: number): Moment;
min(date: Array): Moment;
min(date: any[]): Moment;
min(date: string): Moment;
min(date: string, format: string): Moment;
min(clone: Moment): Moment;