forked from sheepzh/time-tracker-4-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlimit.d.ts
More file actions
94 lines (94 loc) · 2.01 KB
/
limit.d.ts
File metadata and controls
94 lines (94 loc) · 2.01 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
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
/**
* Number of delays today
*/
delayCount: number
/**
* Waste this week, milliseconds
*/
weeklyWaste: 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
/**
* Time limit per week, seconds
*
* @since 2.4.1
*/
weekly?: number
/**
* Time limit per visit, seconds
*
* @since 2.0.0
*/
visitTime?: number
enabled?: 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'
}