Skip to content

Instantly share code, notes, and snippets.

@102
102 / redux-saga_v0.15.x.js
Created November 17, 2017 10:54 — forked from TomiS/redux-saga_v0.15.x.js
Redux-saga flow types for version 0.15.x
/**
* Shared interfaces between the modules 'redux-saga' and
* 'redux-saga/effects'
*/
declare interface $npm$ReduxSaga$Channel {
take: (cb: (msg: mixed) => void) => void,
put: (msg: mixed) => void,
close: Function,
}