UNPKG

mobx-keystone

Version:

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

10 lines (8 loc) 228 B
import type { ModelClass } from "../modelShared/BaseModelShared" import type { AnyDataModel } from "./BaseDataModel" /** * @internal */ export interface DataModelConstructorOptions { modelClass?: ModelClass<AnyDataModel> }