jiti-meet/react/features/toolbox/actions.native.js

19 lines
311 B
JavaScript
Raw Normal View History

// @flow
2017-02-16 23:02:40 +00:00
import { TOGGLE_TOOLBOX_VISIBLE } from './actionTypes';
2017-02-16 23:02:40 +00:00
export * from './actions.any';
/**
* Action to toggle the toolbox visibility.
*
* @returns {{
* type: TOGGLE_TOOLBOX_VISIBLE
* }}
*/
export function toggleToolboxVisible() {
return {
type: TOGGLE_TOOLBOX_VISIBLE
};
}