Skip to content

Commit 520c0f4

Browse files
authored
Fix typing on config: EULA is optional as it has a default (#3074)
1 parent 5547e83 commit 520c0f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/config/ConfigOptions.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export interface ConfigOptions {
7676
/**
7777
* A link to the end-user license agreement (EULA)
7878
*/
79-
eula: string;
79+
eula?: string;
8080

8181
media_devices?: {
8282
/**
@@ -131,6 +131,7 @@ export interface ResolvedConfigOptions extends ConfigOptions {
131131
server_name: string;
132132
};
133133
};
134+
eula: string;
134135
media_devices: {
135136
enable_audio: boolean;
136137
enable_video: boolean;

0 commit comments

Comments
 (0)