-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
37 lines (35 loc) · 1015 Bytes
/
index.d.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
export class EmojiNetworkLog {
static slow: string;
static average: string;
static fast: string;
static slowThreshold: number;
static averageThreshold: number;
static fastThreshold: number;
static info: string;
static success: string;
static redirect: string;
static bad: string;
static error: string;
static cancelled: string;
static invalid: string;
static timingLevel: `slow` | `average` | `fast`;
static statusLevel: `info` | `success` | `redirect` | `bad` | `error` | `cancelled`;
static enable(options: {
slow?: string;
average?: string;
fast?: string;
slowThreshold?: number;
averageThreshold?: number;
fastThreshold?: number;
info?: string;
success?: string;
redirect?: string;
bad?: string;
error?: string;
cancelled?: string;
invalid?: string;
timingLevel?: `slow` | `average` | `fast`;
statusLevel?: `info` | `success` | `redirect` | `bad` | `error` | `cancelled`;
} = {}): void;
static disable(): void;
}