-
Notifications
You must be signed in to change notification settings - Fork 0
/
algorithm.ts
54 lines (46 loc) · 1.01 KB
/
algorithm.ts
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
import type { IsoString } from '~/types/utils';
import type { RatedTier } from '~/types/tierHider';
export interface Algorithm {
id: number;
name: string;
}
export interface AlgorithmInfo {
id: number;
name: string;
englishName: string;
tag: string;
alias: string[];
}
export interface HiderOptionsResponse {
problemTagLockDuration: {
hours: number;
minutes: number;
};
shouldHideTier: boolean;
shouldWarnHighTier: boolean;
warnTier: RatedTier;
algorithmHiderUsage: 'click' | 'always';
problemTagLockUsage: 'click' | 'auto';
}
export interface LegacyTimer {
expire: number;
hour: string;
minute: string;
problem: number;
}
export interface LegacyHiderOptions {
font: `font-${number}` | 'none';
lock: 'click' | 'always';
predict: 'click' | 'always';
theme: 'yes' | 'no';
}
export interface CheckedAlgorithmIdsResponse {
checkedIds: number[];
}
export interface Timer {
problemId: number;
expiresAt: IsoString;
}
export interface TimersResponse {
timers: Timer[];
}