importtypePhaserfrom'phaser';
/**
* Info about a tracked game object in the tree.
*/exportinterfaceGameObjectNode {
gameObject: Phaser.GameObjects.GameObject;
props: Record<string, unknown>;
children: (GameObjectNode | null)[];
}
//# sourceMappingURL=node.d.ts.map