2021-01-21 20:46:47 +00:00
|
|
|
// @flow
|
|
|
|
import { hideDialog } from '../base/dialog';
|
|
|
|
|
2021-08-04 08:51:05 +00:00
|
|
|
import { RemoteVideoMenu, SharedVideoMenu } from './components/native';
|
2021-01-21 20:46:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Hides the remote video menu.
|
|
|
|
*
|
|
|
|
* @returns {Function}
|
|
|
|
*/
|
|
|
|
export function hideRemoteVideoMenu() {
|
|
|
|
return hideDialog(RemoteVideoMenu);
|
|
|
|
}
|
|
|
|
|
2021-08-04 08:51:05 +00:00
|
|
|
/**
|
|
|
|
* Hides the shared video menu.
|
|
|
|
*
|
|
|
|
* @returns {Function}
|
|
|
|
*/
|
|
|
|
export function hideSharedVideoMenu() {
|
|
|
|
return hideDialog(SharedVideoMenu);
|
|
|
|
}
|
|
|
|
|
2021-01-21 20:46:47 +00:00
|
|
|
export * from './actions.any';
|