Skip to content

Commit

Permalink
#000 okan fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
okan.cetin committed Sep 26, 2016
1 parent 43c02b6 commit 891b8af
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/utils/reducerBuilder.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { SyncAction, AsyncAction } from '../utils/actionHelpers'


interface IAction<T extends Redux.Action> {
export interface IAction<T extends Redux.Action> {
prototype: T;
}


type Reducer<State, ActionType extends SyncAction> = (state: State, action: ActionType) => State;
export type Reducer<State, ActionType extends SyncAction> = (state: State, action: ActionType) => State;

export class ReducerBuilder<State> {

Expand Down

0 comments on commit 891b8af

Please sign in to comment.