UNPKG

lingo3d

Version:

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

13 lines (12 loc) 530 B
import IGameGraphChild from "./IGameGraphChild"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; export default interface IConnector extends IGameGraphChild { from: Nullable<string>; to: Nullable<string>; fromProp: Nullable<string>; toProp: Nullable<string>; xyz: Nullable<"x" | "y" | "z">; } export declare const connectorSchema: Required<ExtractProps<IConnector>>; export declare const connectorDefaults: Partial<import("./utils/Defaults").default<IConnector>>;