Skip to content

Commit

Permalink
Add typescript definition file. (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Seoyeon Lee authored and dmfilipenko committed Jul 5, 2018
1 parent b723860 commit 58c8822
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export interface Timezone {
value: string;
abbr: string;
offset: number;
isdst: boolean;
text: string;
utc: string[];
}

declare const timezones: Timezone[];

export default timezones;

0 comments on commit 58c8822

Please sign in to comment.