-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathlimit.d.ts
More file actions
139 lines (137 loc) · 2.79 KB
/
limit.d.ts
File metadata and controls
139 lines (137 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
declare namespace timer.limit {
/**
* Restricted periods
* [0, 1] means from 00:00 to 00:01
* [0, 120] means from 00:00 to 02:00
* @since 2.0.0
*/
type Period = Vector<2>
/**
* Limit rule in runtime
*
* @since 0.8.4
*/
type Item = Rule & {
/**
* Waste today, milliseconds
*/
waste: number
/**
* Visit count today
*
* @since 3.1.0
*/
visit: number
/**
* Number of delays today
*/
delayCount: number
/**
* Waste this week, milliseconds
*/
weeklyWaste: number
/**
* Visit count this week
*
* @since 3.1.0
*/
weeklyVisit: number
/**
* Delay count of this week
*/
weeklyDelayCount: number
}
type Rule = {
/**
* Id
*/
id: number
/**
* Name
*/
name: string
/**
* Condition, can be regular expression with star signs
*/
cond: string[]
/**
* Time limit per day, seconds
*/
time?: number
/**
* Visit count per day
*
* @since 3.1.0
*/
count?: number
/**
* Time limit per week, seconds
*
* @since 2.4.1
*/
weekly?: number
/**
* Visit count per week
*
* @since 3.1.0
*/
weeklyCount?: number
/**
* Time limit per visit, seconds
*
* @since 2.0.0
*/
visitTime?: number
enabled: boolean
/**
* Locked
*
* @since 3.4.0
*/
locked: boolean
/**
* @since 2.3.4
*/
weekdays?: number[]
/**
* Allow to delay 5 minutes if time over
*/
allowDelay: boolean
periods?: Period[]
}
/**
* @since 1.9.0
*/
type RestrictionLevel =
// No additional action required to lock
| 'nothing'
// Password required to lock or modify restricted rule
| 'password'
// Verification code input required to lock or modify restricted rule
| 'verification'
// Not allowed to unlock manually
| 'strict'
/**
* @since 1.9.0
*/
type VerificationDifficulty =
// Easy
| 'easy'
// Need some operations
| 'hard'
// Disgusting
| 'disgusting'
type ReasonType =
| "DAILY"
| "WEEKLY"
| "VISIT"
| "PERIOD"
/**
* @since 3.1.0
*/
type ReminderInfo = {
items: timer.limit.Item[]
// Minutes
duration: number
}
}