// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import { default as unionize, ofType, UnionOf } from "unionize"; import { SidePanelId } from "~/store/side-panel/side-panel-reducer"; export const sidePanelActions = unionize({ TOGGLE_SIDE_PANEL_ITEM_OPEN: ofType() }, { tag: 'type', value: 'payload' }); export type SidePanelAction = UnionOf;