UNPKG

@foxglove/ros1

Version:

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

5 lines (3 loc) 215 B
import { XmlRpcFault, XmlRpcValue } from "@foxglove/xmlrpc"; export type RosXmlRpcResponse = [code: number, msg: string, value: XmlRpcValue]; export type RosXmlRpcResponseOrFault = RosXmlRpcResponse | XmlRpcFault;