-
Notifications
You must be signed in to change notification settings - Fork 1
/
configschema.d.ts
63 lines (62 loc) · 1.5 KB
/
configschema.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
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
/* tslint:disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export interface Configschema {
twitchEventSub: any;
twitch?: {
enable: boolean;
chatBot: boolean;
};
discord?: {
test: boolean;
token: string;
serverID: string;
commandChannelID: string;
voiceChannelID: string;
ignoredUsers?: string[];
};
discordSunshine?: {
serverID: string;
commandChannelID: string;
voiceChannelID: string;
};
discordSA2?: {
serverID: string;
commandChannelID: string;
voiceChannelID: string;
};
obs?: {
enable: boolean;
address: string;
password: string;
discordAudio: string;
mpdAudio: string;
streamsAudio: string;
};
mpd?: {
enable: boolean;
address: string;
port: number;
};
twitchEventSub?: {
enabled: boolean;
clientID: string;
clientSecret: string;
accessToken: string;
hostName: string;
eventSubListenerKey: string;
};
firebaseConfig?: {
apiKey: string;
authDomain: string;
databaseURL: string;
projectId: string;
storageBucket: string;
messagingSenderId: string;
appId: string;
measurementId: string;
};
}