Skip to content

Commit

Permalink
fix<dva-loading>: value of models and effects in DvaLoadingState coul…
Browse files Browse the repository at this point in the history
…d be undefined
  • Loading branch information
DiamondYuan committed May 27, 2019
1 parent 9e0c909 commit 6d3420e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dva-loading/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export interface DvaLoadingState {
global: boolean;
models: { [type: string]: boolean };
effects: { [type: string]: boolean };
models: { [type: string]: boolean | undefined };
effects: { [type: string]: boolean | undefined };
}

0 comments on commit 6d3420e

Please sign in to comment.