14 lines
227 B
TypeScript
Raw Normal View History

import { Action as ReduxAction } from 'redux';
interface BSoDAction extends ReduxAction {
2020-05-24 02:08:24 +03:00
type: 'BSOD';
}
export function bsod(): BSoDAction {
2020-05-24 02:08:24 +03:00
return {
type: 'BSOD',
};
}
export type Action = BSoDAction;