UNPKG

phaser-jsx

Version:
11 lines (9 loc) 253 B
import type Phaser from 'phaser'; /** * Info about a tracked game object in the tree. */ export interface GameObjectNode { gameObject: Phaser.GameObjects.GameObject | null; props: Record<string, unknown>; children: (GameObjectNode | null)[]; }