MCPcopy Create free account
hub / github.com/BabylonJS/Spector.js / IState

Interface IState

src/embeddedFrontend/mvx/stateStore.ts:3–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { ComponentInstance } from "./componentInstance";
2
3interface IState {
4 readonly id: number;
5 readonly data: {};
6 parent: IState;
7 children: IState[];
8 componentInstance: ComponentInstance;
9 lastOperation: LastOperation;
10}
11
12export const enum LastOperation {
13 Processed = 0,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected