Rename class in order to avoid name collisions.

This commit is contained in:
Michel Salib
2014-12-01 17:52:09 +01:00
parent 289e357827
commit be1c64f424
+2 -2
View File
@@ -9,7 +9,7 @@ interface Moment {
tz(timezone: string): Moment;
}
interface Zone {
interface MomentZone {
name: string;
abbrs: string[];
untils: number[];
@@ -28,7 +28,7 @@ interface MomentTimezone {
(date: Moment, timezone: string): Moment;
(date: Object, timezone: string): Moment;
zone(timezone: string): Zone;
zone(timezone: string): MomentZone;
add(packedZoneString: string): void;
add(packedZoneString: string[]): void;