X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c90e813adcec89899d9db95843295a84fb058c3e..4407b22fba72783a428ebbaf165cc579ea4c5a23:/src/store/side-panel/side-panel-action.ts diff --git a/src/store/side-panel/side-panel-action.ts b/src/store/side-panel/side-panel-action.ts index 32fa653b..0dd6aad1 100644 --- a/src/store/side-panel/side-panel-action.ts +++ b/src/store/side-panel/side-panel-action.ts @@ -4,14 +4,13 @@ import { default as unionize, ofType, UnionOf } from "unionize"; -const actions = unionize({ +export const sidePanelActions = unionize({ TOGGLE_SIDE_PANEL_ITEM_OPEN: ofType(), TOGGLE_SIDE_PANEL_ITEM_ACTIVE: ofType(), - RESET_SIDE_PANEL_ACTIVITY: ofType(), + RESET_SIDE_PANEL_ACTIVITY: ofType<{}>(), }, { tag: 'type', value: 'payload' }); -export type SidePanelAction = UnionOf; -export default actions; \ No newline at end of file +export type SidePanelAction = UnionOf;