mobx-decorators
mobx-decorators copied to clipboard
Several helper MobX decorators (setter, observe, save, ...)
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...
Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.5.1 to 4.7.6. Changelog Sourced from handlebars's changelog. v4.7.6 - April 3rd, 2020 Chore/Housekeeping: #1672 - Switch cmd parser to latest minimist (@dougwilson Compatibility notes: Restored Node.js...
Hi, the @allObservable export is missing in the Typescript definition file index.d.ts Something like: `export function allObservable(options?: ({only?: Array, except?: Array})): any;`
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 Commits d7fbc52 Bump to v4.17.19 2e1c0f2 Add npm-package 1b6c282 Bump to v4.17.18 a370ac8 Bump to v4.17.17 1144918...
Hi, if you can provide guidance on why mobx5(or really 6) is unsported, ill give a shot at updating the lib to work
* is there a way to support mobx 5 too?
I'm trying to use the decorator: ``` import { allObservable } from "mobx-decorators" @allObservable export default class AppState { public search?: string; constructor() { this.search = null as any; }...