Spaces:
Build error
Build error
File size: 289 Bytes
ebcc4b8 |
1 2 3 4 5 6 7 8 9 10 11 |
import type IUrdfJoint from "./IUrdfJoint";
import type IUrdfLink from "./IUrdfLink";
export default interface IUrdfRobot {
name: string;
links: { [name: string]: IUrdfLink };
joints: IUrdfJoint[];
// the DOM element holding the XML, so we can work non-destructive
elem?: Element;
}
|