UNPKG

mobx-keystone-mindreframer

Version:

A MobX powered state management solution based on data trees with first class support for Typescript, snapshots, patches and much more

9 lines (8 loc) 221 B
import type { AnyDataModel } from "./BaseDataModel"; /** * Checks if an object is a data model instance. * * @param model * @returns */ export declare function isDataModel(model: any): model is AnyDataModel;