Skip to content

Commit fe7665b

Browse files
author
Said Shah
committed
Added Unit of time enum
1 parent 5c0ea0e commit fe7665b

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

src/enumerations/unit-of-time.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
enum UnitOfTime {
2+
Day = "day",
3+
Days = "days",
4+
Hour = "hour",
5+
Hours = "hours",
6+
Millisecond = "millisecond",
7+
Milliseconds = "milliseconds",
8+
Minute = "minute",
9+
Minutes = "minutes",
10+
Month = "month",
11+
Months = "months",
12+
Second = "second",
13+
Seconds = "seconds",
14+
Week = "week",
15+
Weeks = "weeks",
16+
Year = "year",
17+
Years = "years",
18+
}
19+
20+
export { UnitOfTime };

0 commit comments

Comments
 (0)