github.com/wfusion/gofusion@v1.1.14/common/infra/asynq/asynqmon/ui/src/actions/snackbarActions.ts (about)

     1  export const CLOSE_SNACKBAR = "CLOSE_SNACKBAR";
     2  
     3  interface CloseSnakbarAction {
     4    type: typeof CLOSE_SNACKBAR;
     5  }
     6  
     7  // Union of all snackbar related action types
     8  export type SnackbarActionTypes = CloseSnakbarAction;
     9  
    10  export function closeSnackbar() {
    11    return { type: CLOSE_SNACKBAR };
    12  }