Skip to content

Version 0.1.1

Latest
Compare
Choose a tag to compare
@VitorLuizC VitorLuizC released this 18 Jun 17:52
· 2 commits to master since this release
  • Fixed module resolution: I really don't know why TypeScript shows me an error when I import default store from this module.
    import FormStore from 'mobx-valite-form-store';
    
    const store = new FormStore({}); // This shows me an error.
    But if I named import default module value it seems ok.
    import { default as FormStore } from 'mobx-valite-form-store';
    
    const store = new FormStore({}); // This seems to be ok.
    I think is related to how I export everything as named, including default and I'd fixed it on this commit.