lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
8 lines (7 loc) • 305 B
TypeScript
import IModel from "./IModel";
import { ExtractProps } from "./utils/extractProps";
export default interface ITree extends IModel {
preset: string;
}
export declare const treeSchema: Required<ExtractProps<ITree>>;
export declare const treeDefaults: Partial<import("./utils/Defaults").default<ITree>>;