jitsi-meet-electron/app/features/navbar/actionTypes.js
2019-10-16 11:55:32 -07:00

19 lines
369 B
JavaScript

/**
* The type of (redux) action that opens specified Drawer.
*
* @type {
* type: OPEN_DRAWER,
* drawerComponent: React.ComponentType<*>
* }
*/
export const OPEN_DRAWER = Symbol('OPEN_DRAWER');
/**
* The type of (redux) action that closes all Drawer.
*
* @type {
* type: CLOSE_DRAWER
* }
*/
export const CLOSE_DRAWER = Symbol('CLOSE_DRAWER');