UNPKG

@foxglove/ros1

Version:

Standalone TypeScript implementation of the ROS 1 (Robot Operating System) protocol with a pluggable transport layer

4 lines 255 B
import { XmlRpcFault, XmlRpcValue } from "@foxglove/xmlrpc"; export type RosXmlRpcResponse = [code: number, msg: string, value: XmlRpcValue]; export type RosXmlRpcResponseOrFault = RosXmlRpcResponse | XmlRpcFault; //# sourceMappingURL=XmlRpcTypes.d.ts.map