Skip to content

Commit

Permalink
added decorator type in index.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackFenix2 committed Feb 3, 2019
1 parent 58e654f commit e734330
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
/**
* Wrapper/Decorator for Mobx stores
* Decorator for Mobx stores
*/

export default function<T>(
config?: RemoteDevConfig
): (component: any, config?: RemoteDevConfig) => void;

/**
* Wrapper for Mobx stores
*/
export default function<T>(store: T, config?: RemoteDevConfig): T;

Expand Down

0 comments on commit e734330

Please sign in to comment.