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

12 lines (11 loc) 320 B
import { IAtom } from "mobx"; import type { SnapshotOutOf } from "./SnapshotOf"; interface SnapshotData<T extends object> { standard: SnapshotOutOf<T>; readonly atom: IAtom; } /** * @ignore */ export declare function reportInternalSnapshotObserved(sn: Readonly<SnapshotData<any>>): void; export {};