UNPKG

mobx-bonsai

Version:

A fast lightweight alternative to MobX-State-Tree + Y.js two-way binding

10 lines (8 loc) 209 B
let yjs: typeof import("yjs") | undefined export function requireYjs() { // we must require yjs like this so it can be a static dynamic dependency if (!yjs) { yjs = require("yjs") } return yjs! }