lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
8 lines (7 loc) • 360 B
TypeScript
import IGameGraphChild from "./IGameGraphChild";
import { ExtractProps } from "./utils/extractProps";
export default interface ISpawnNode extends IGameGraphChild {
spawn: () => void;
}
export declare const spawnNodeSchema: Required<ExtractProps<ISpawnNode>>;
export declare const spawnNodeDefaults: Partial<import("./utils/Defaults").default<ISpawnNode>>;