Releases: VitorLuizC/mobx-valite-form-store
Releases · VitorLuizC/mobx-valite-form-store
Version 0.1.1
- Fixed module resolution: I really don't know why TypeScript shows me an error when I import default store from this module.
But if I named import default module value it seems ok.
import FormStore from 'mobx-valite-form-store'; const store = new FormStore({}); // This shows me an error.
I think is related to how I export everything as named, including default and I'd fixed it on this commit.import { default as FormStore } from 'mobx-valite-form-store'; const store = new FormStore({}); // This seems to be ok.
Version 0.1.0
Add tests & Travis settings