mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
11 lines
117 B
JavaScript
11 lines
117 B
JavaScript
export const BSOD = 'BSOD';
|
|
|
|
/**
|
|
* @returns {object}
|
|
*/
|
|
export function bsod() {
|
|
return {
|
|
type: BSOD,
|
|
};
|
|
}
|