accounts-frontend/packages/app/components/ui/bsod/actions.ts

14 lines
217 B
TypeScript

import { Action as ReduxAction } from 'redux';
interface BSoDAction extends ReduxAction {
type: 'BSOD';
}
export function bsod(): BSoDAction {
return {
type: 'BSOD',
};
}
export type Action = BSoDAction;