UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

8 lines (7 loc) 361 B
import IGameGraphChild from "./IGameGraphChild"; import { ExtractProps } from "./utils/extractProps"; export default interface INumberNode extends IGameGraphChild { value: number; } export declare const numberNodeSchema: Required<ExtractProps<INumberNode>>; export declare const numberNodeDefaults: Partial<import("./utils/Defaults").default<INumberNode>>;