blanchon's picture
squash: initial commit
3aea7c6
raw
history blame
285 Bytes
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
}