/
githubmirror
/
hyper
Обзор
Документация
Войти
/
githubmirror
/
hyper
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
lib/actions/index.ts
14 строк
312 B
Labhansh Agrawal
sort imports
25 июл 2023, 21:46
25 июл 2023, 21:46
36ff6e9
Код
Авторство
О чём код?
import {INIT} from '../../typings/constants'; import type {HyperDispatch} from '../../typings/hyper'; import rpc from '../rpc'; export default function init() { return (dispatch: HyperDispatch) => { dispatch({ type: INIT, effect: () => { rpc.emit('init', null); } }); }; }