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";
6 import { SidePanelId } from "~/store/side-panel/side-panel-reducer";
8 export const sidePanelActions = unionize({
9 TOGGLE_SIDE_PANEL_ITEM_OPEN: ofType<SidePanelId>()
15 export type SidePanelAction = UnionOf<typeof sidePanelActions>;