@wandelbots/wandelbots-js-react-components
Version:
React UI toolkit for building applications on top of the Wandelbots platform
14 lines • 569 B
TypeScript
import type { ThreeElements } from "@react-three/fiber";
import React from "react";
import type { Group } from "three";
export type RobotModelProps = {
modelURL: string;
/**
* Called after a robot model has been loaded and
* rendered into the threejs scene
*/
postModelRender?: () => void;
flangeRef?: React.Ref<Group>;
} & ThreeElements["group"];
export declare function GenericRobot({ modelURL, flangeRef, postModelRender, ...props }: RobotModelProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=GenericRobot.d.ts.map