We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5c0ea0e + 09238dd commit bc87312Copy full SHA for bc87312
2 files changed
src/enumerations/anchor-target-types.ts
@@ -0,0 +1,8 @@
1
+enum AnchorTargetTypes {
2
+ Blank = "_blank",
3
+ Parent = "_parent",
4
+ Self = "_self",
5
+ Top = "_top",
6
+}
7
+
8
+export { AnchorTargetTypes };
src/enumerations/unit-of-time.ts
@@ -0,0 +1,20 @@
+enum UnitOfTime {
+ Day = "day",
+ Days = "days",
+ Hour = "hour",
+ Hours = "hours",
+ Millisecond = "millisecond",
+ Milliseconds = "milliseconds",
+ 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