UNPKG

lingo3d

Version:

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

11 lines (10 loc) 551 B
import PhysicsObjectManager from "../display/core/PhysicsObjectManager"; import IMeshAppendable from "./IMeshAppendable"; import { ExtractProps } from "./utils/extractProps"; import Nullable from "./utils/Nullable"; export default interface IJointBase extends IMeshAppendable { from: Nullable<string | PhysicsObjectManager>; to: Nullable<string | PhysicsObjectManager>; } export declare const jointBaseSchema: Required<ExtractProps<IJointBase>>; export declare const jointBaseDefaults: Partial<import("./utils/Defaults").default<IJointBase>>;