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 interface SnackbarMessage {
13 export enum SnackbarKind {
20 export const snackbarActions = unionize({
21 OPEN_SNACKBAR: ofType<{message: string; hideDuration?: number, kind?: SnackbarKind}>(),
22 CLOSE_SNACKBAR: ofType<{}>(),
23 SHIFT_MESSAGES: ofType<{}>()
26 export type SnackbarAction = UnionOf<typeof snackbarActions>;