ws-voice-infinity-global-module 1.0.38 → 1.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -286,7 +286,8 @@ interface IAuthModalProps {
286
286
  globalStore?: GlobalStore;
287
287
  eventStore?: EventStore;
288
288
  showAuthModal: boolean;
289
- authModalCloseCallback: () => void | null;
289
+ runLoginAs?: string | null;
290
+ authModalCloseCallback: (success?: boolean) => void | null;
290
291
  }
291
292
 
292
293
  declare class AuthModal extends React.Component<IAuthModalProps, any> {