From 8ad290834548fdda510b7c09a6f9c445e77d1980 Mon Sep 17 00:00:00 2001 From: Jernej Pregelj Date: Wed, 3 Feb 2021 00:12:14 +0100 Subject: [PATCH] Update types.tsx Solving missing type error as described in https://github.com/gatteo/react-jitsi/issues/14#issuecomment-656244273 --- src/types.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/types.tsx b/src/types.tsx index 585344e..4ddfd48 100644 --- a/src/types.tsx +++ b/src/types.tsx @@ -165,6 +165,11 @@ export interface ConfigOptions { * input and will suggest another valid device if one is present. */ enableNoAudioDetection?: boolean; + + /** + * Show preloading page + */ + prejoinPageEnabled?: boolean; /** * Enabling this will run the lib-jitsi-meet noise detection module which will @@ -1183,4 +1188,4 @@ export interface Props { email?: string; }; -} \ No newline at end of file +}