Skip to content

Commit

Permalink
rm tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
nikogu committed Oct 10, 2016
1 parent 4668681 commit ca14f43
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions examples/count-ts/tsconfig.json

This file was deleted.

2 changes: 1 addition & 1 deletion examples/count-ts/typings/globals/dva/index.d.ts
Expand Up @@ -11,7 +11,7 @@ export interface Action {
}
export type Reducer<S> = <A extends Action>(state: S, action: A) => S;
export type Effect<S> = <A extends Action>(action: A, saga:{ call?:Function, put?:Function, select?:Function }) => S;
export type Subscription<any> = <any>(signature: {dispatch?:Function, history:Function})=>void;
export type Subscription<Function> = <Function>(signature: {dispatch?:Function, history:Function})=>void;

interface Reducers {
Reducer: Reducer
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Expand Up @@ -11,7 +11,7 @@ export interface Action {
}
export type Reducer<S> = <A extends Action>(state: S, action: A) => S;
export type Effect<S> = <A extends Action>(action: A, saga:{ call?:Function, put?:Function, select?:Function }) => S;
export type Subscription<any> = <any>(signature: {dispatch?:Function, history:Function})=>void;
export type Subscription<Function> = <Function>(signature: {dispatch?:Function, history:Function})=>void;

interface Reducers {
Reducer: Reducer
Expand Down

0 comments on commit ca14f43

Please sign in to comment.