lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
9 lines (8 loc) • 407 B
TypeScript
import IGameGraphChild from "./IGameGraphChild";
import { ExtractProps } from "./utils/extractProps";
import Nullable from "./utils/Nullable";
export default interface IMathNode extends IGameGraphChild {
expression: Nullable<string>;
}
export declare const mathNodeSchema: Required<ExtractProps<IMathNode>>;
export declare const mathNodeDefaults: Partial<import("./utils/Defaults").default<IMathNode>>;