From a41c95af11bdb8ac6e8a6acc8e41ba5eac40f4a4 Mon Sep 17 00:00:00 2001 From: sclausen Date: Fri, 11 Mar 2016 11:40:26 +0100 Subject: [PATCH] fixed wrong return type of guess() --- moment-timezone/moment-timezone.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moment-timezone/moment-timezone.d.ts b/moment-timezone/moment-timezone.d.ts index 42dd4b9f7a..77c2792bd2 100644 --- a/moment-timezone/moment-timezone.d.ts +++ b/moment-timezone/moment-timezone.d.ts @@ -70,7 +70,7 @@ interface MomentTimezone { }): void; names(): string[]; - guess(): MomentZone; + guess(): string; setDefault(timezone: string): void; }