Upgraded dev-tools to 4.0.1 wich added typings

This commit is contained in:
Michel Weststrate 2016-03-01 13:41:26 +01:00
parent 44db825d79
commit 162f722ef9
2 changed files with 4 additions and 6 deletions

View file

@ -32,7 +32,7 @@
"dependencies": {
"mobx": "^2.0.0",
"mobx-react": "^3.0.0",
"mobx-react-devtools": "^4.0.0",
"mobx-react-devtools": "^4.0.1",
"react": "^0.14.0",
"react-dom": "^0.14.0"
}

View file

@ -2,9 +2,7 @@ import * as React from 'react';
import * as ReactDOM from 'react-dom';
import {observable} from 'mobx';
import {observer} from 'mobx-react';
declare var require;
const DevTools = require('mobx-react-devtools').default; // Use import see #6, add typings
import DevTools from 'mobx-react-devtools';
class AppState {
@observable timer = 0;