jitsi-meet-electron/app/features/navbar/actionTypes.js
2018-06-21 07:55:32 +02:00

19 lines
357 B
JavaScript

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