Skip to content

Commit

Permalink
fix: subscription params problem
Browse files Browse the repository at this point in the history
  • Loading branch information
sorrycc committed Oct 13, 2016
1 parent a91a1dc commit fd76dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface EffectsCommandMap {
export type Effect = (action: Action, effects: EffectsCommandMap) => void;
export type EffectType = 'takeEvery' | 'takeLatest' | 'watcher' | 'throttle';
export type EffectWithType = [Effect, { type : EffectType }];
export type Subscription = (action: Action, effects: EffectsCommandMap) => void;
export type Subscription = (api: SubscriptionAPI, done: Function) => void;
export type ReducersMapObjectWithEnhancer = [ReducersMapObject, ReducerEnhancer];

export interface EffectsMapObject {
Expand Down

0 comments on commit fd76dc6

Please sign in to comment.