1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { unionize, ofType, UnionOf } from 'common/unionize';
7 export const propertiesActions = unionize({
8 SET_PROPERTY: ofType<{ key: string, value: any }>(),
9 DELETE_PROPERTY: ofType<string>(),
12 export type PropertiesAction = UnionOf<typeof propertiesActions>;