From f039c139724b42d0a9c1a47bedddc3a71698206b Mon Sep 17 00:00:00 2001 From: Damiano Date: Wed, 26 Dec 2012 09:53:25 +0100 Subject: [PATCH] Globalize - Added GlobalizeMonths interface Added GlobalizeMonths interface to detail months property by replacing the 'any[]' declaration. --- globalize/globalize.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/globalize/globalize.d.ts b/globalize/globalize.d.ts index 016b3e0de..902236ced 100644 --- a/globalize/globalize.d.ts +++ b/globalize/globalize.d.ts @@ -49,6 +49,11 @@ interface GlobalizeDays { namesShort: string[]; } +interface GlobalizeMonths { + names: string[]; + namesAbbr: string[]; +} + interface GlobalizePatterns { d: string; D: string; @@ -67,7 +72,7 @@ interface GlobalizeCalendar { // ":": string, firstDay: number; days: GlobalizeDays; - months: any[]; + months: GlobalizeMonths; AM: string[]; PM: string[]; eras: GlobalizeEra[];