UNPKG

822 BTypeScriptView Raw
1export declare const OPEN_DRAWER = "Navigation/OPEN_DRAWER";
2export declare const CLOSE_DRAWER = "Navigation/CLOSE_DRAWER";
3export declare const TOGGLE_DRAWER = "Navigation/TOGGLE_DRAWER";
4export declare const DRAWER_OPENED = "Navigation/DRAWER_OPENED";
5export declare const DRAWER_CLOSED = "Navigation/DRAWER_CLOSED";
6export declare const MARK_DRAWER_ACTIVE = "Navigation/MARK_DRAWER_ACTIVE";
7export declare const MARK_DRAWER_SETTLING = "Navigation/MARK_DRAWER_SETTLING";
8export declare const MARK_DRAWER_IDLE = "Navigation/MARK_DRAWER_IDLE";
9export declare type DrawerActionType = typeof OPEN_DRAWER | typeof CLOSE_DRAWER | typeof TOGGLE_DRAWER;
10export declare const openDrawer: (payload?: any) => any;
11export declare const closeDrawer: (payload?: any) => any;
12export declare const toggleDrawer: (payload?: any) => any;