-
Notifications
You must be signed in to change notification settings - Fork 47
/
global.d.ts
32 lines (31 loc) · 851 Bytes
/
global.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
export {};
declare global {
type Config = {
mode: 'DIFFERENT_DIMENSION_ME' | 'AI_PAINTING_ANIME';
botToken: string;
keepFiles: {
compared: boolean;
input: boolean;
single: boolean;
video: boolean;
};
messages: {
blocked: string;
bye: string;
hello: string;
media: string;
received: string;
};
parallelRequests: number;
proxyUrl?:
`socks5://${string}:${string}@${string}:${number}` |
`socks5://${string}:${number}` |
`http://${string}:${string}@${string}:${number}` |
`http://${string}:${number}`;
sendMedia: {
compared: boolean;
single: boolean;
video: boolean;
};
};
}