From 520c0f4925763329ff4b4eabd7e5557104d6c015 Mon Sep 17 00:00:00 2001 From: Hugh Nimmo-Smith Date: Wed, 12 Mar 2025 12:52:13 +0000 Subject: [PATCH] Fix typing on config: EULA is optional as it has a default (#3074) --- src/config/ConfigOptions.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/ConfigOptions.ts b/src/config/ConfigOptions.ts index 49f3d2ee..62a74829 100644 --- a/src/config/ConfigOptions.ts +++ b/src/config/ConfigOptions.ts @@ -76,7 +76,7 @@ export interface ConfigOptions { /** * A link to the end-user license agreement (EULA) */ - eula: string; + eula?: string; media_devices?: { /** @@ -131,6 +131,7 @@ export interface ResolvedConfigOptions extends ConfigOptions { server_name: string; }; }; + eula: string; media_devices: { enable_audio: boolean; enable_video: boolean;