@wandelbots/wandelbots-js-react-components
Version:
React UI toolkit for building applications on top of the Wandelbots platform
15 lines • 707 B
TypeScript
import Stack from "@mui/material/Stack";
type JoggingJointRotationControlProps = {
startJogging: (direction: "-" | "+") => void;
stopJogging: () => void;
lowerLimitDegs?: number;
upperLimitDegs?: number;
getValueDegs: () => number | undefined;
disabled?: boolean;
} & React.ComponentProps<typeof Stack>;
/** A input widget to control an individual joint */
export declare const JoggingJointRotationControl: (({ startJogging, stopJogging, lowerLimitDegs, upperLimitDegs, getValueDegs, disabled, ...rest }: JoggingJointRotationControlProps) => import("react/jsx-runtime").JSX.Element) & {
displayName: string;
};
export {};
//# sourceMappingURL=JoggingJointRotationControl.d.ts.map