core-native
Version:
A lightweight framework based on React Native + Redux + Redux Saga, in strict TypeScript.
12 lines • 389 B
JavaScript
import { call as rawCall, race as rawRace, spawn, all as rawAll, delay, put } from "redux-saga/effects";
export function* call(fn, ...args) {
return yield rawCall(fn, ...args);
}
export function* race(effects) {
return yield rawRace(effects);
}
export function* all(effects) {
return yield rawAll(effects);
}
export { spawn, delay, put };
//# sourceMappingURL=typed-saga.js.map