mobx-bonsai
Version:
A fast lightweight alternative to MobX-State-Tree + Y.js two-way binding
15 lines (12 loc) • 316 B
text/typescript
/**
* Property name (if the parent is an object) or index number (if the parent is an array).
*/
export type PathElement = string
/**
* Path from a parent to a child.
*/
export type Path = ReadonlyArray<PathElement>
/**
* Path from a parent to a child (writable).
*/
export type WritablePath = PathElement[]