mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
14 lines
217 B
TypeScript
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;
|