mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-04-04 01:40:18 +00:00
25 lines
525 B
TypeScript
25 lines
525 B
TypeScript
export * from './actions.any';
|
|
|
|
/**
|
|
* Shows the toolbox for specified timeout.
|
|
*
|
|
* @param {number} _timeout - Timeout for showing the toolbox.
|
|
* @returns {Function}
|
|
*/
|
|
export function showToolbox(_timeout?: number): any {
|
|
return {};
|
|
}
|
|
|
|
/**
|
|
* Shows/hides the overflow menu.
|
|
*
|
|
* @param {boolean} _visible - True to show it or false to hide it.
|
|
* @returns {{
|
|
* type: SET_OVERFLOW_MENU_VISIBLE,
|
|
* visible: boolean
|
|
* }}
|
|
*/
|
|
export function setOverflowMenuVisible(_visible: boolean): any {
|
|
return {};
|
|
}
|