From e2fbadac59602c4938e111874abf73475c028127 Mon Sep 17 00:00:00 2001 From: Steve Krzysiak Date: Sun, 15 May 2022 06:54:38 -0500 Subject: [PATCH] Add abbreviations export to TS definition --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 78c24671..ddd1da42 100644 --- a/index.d.ts +++ b/index.d.ts @@ -25,4 +25,5 @@ interface TimeZoneOptions { export const rawTimeZones: RawTimeZone[]; export const timeZonesNames: TimeZoneName[]; +export const abbreviations: {[key: string]: string} export function getTimeZones(opts?: TimeZoneOptions): TimeZone[];