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 ownerNameActions = unionize({
8 SET_OWNER_NAME: ofType<OwnerNameState>()
11 interface OwnerNameState {
16 export type OwnerNameAction = UnionOf<typeof ownerNameActions>;