mirror of
https://github.com/vector-im/element-call.git
synced 2026-01-18 02:32:27 +00:00
Fix typing on config: EULA is optional as it has a default (#3074)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user