[moment] Accept MomentInput for moment().set()

As per http://momentjs.com/docs/#/get-set/set/
This commit is contained in:
Carlos Precioso
2015-10-13 15:25:00 +02:00
committed by Carlos Precioso
parent 14ab703f43
commit a63be38549
+1
View File
@@ -303,6 +303,7 @@ declare module moment {
get(unit: string): number;
set(unit: string, value: number): Moment;
set(objectLiteral: MomentInput): Moment;
}
type formatFunction = () => string;