Sign in
apache
/
skywalking-rocketbot-ui
/
refs/heads/develop
/
.
/
src
/
store
/
dispatch
/
alarm.ts
blob: 507b06eb6f0927b35976f1a2edcea7677a5bec7a [
file
]
import
store
from
'../index'
;
import
{
AlarmParams
}
from
'@/store/modules/alarm.ts'
;
export
const
getAlarm
=
(
alarm
:
AlarmParams
):
void
=>
{
store
.
dispatch
(
'alarm/GET_ALARM'
,
alarm
);
};