1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { default as unionize, ofType, UnionOf } from "unionize";
7 const actions = unionize({
8 TOGGLE_SIDE_PANEL_ITEM_OPEN: ofType<string>(),
9 TOGGLE_SIDE_PANEL_ITEM_ACTIVE: ofType<string>(),
10 RESET_SIDE_PANEL_ACTIVITY: ofType<string>(),
16 export type SidePanelAction = UnionOf<typeof actions>;
17 export default actions;