Interface ConfigurationDocument

interface ConfigurationDocument {
    adapters?: IAdapterConfiguration[];
    application?: {
        configurationMap: {
            [key: string]: string;
        };
    };
    tags: ITags;
    telemetry?: {
        streams?: {
            disabled?: boolean;
            name: string;
            onDemand?: boolean;
        }[];
    };
    teleop?: {
        customStreams?: {
            name: string;
            rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
        }[];
        hardwareStreams?: {
            name: string;
            rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
        }[];
        rosStreams?: {
            rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
            topicName: string;
            topicType: string;
        }[];
    };
    urdfFiles: string[];
}

Properties

application?: {
    configurationMap: {
        [key: string]: string;
    };
}

Type declaration

  • configurationMap: {
        [key: string]: string;
    }
    • [key: string]: string
tags: ITags
telemetry?: {
    streams?: {
        disabled?: boolean;
        name: string;
        onDemand?: boolean;
    }[];
}

Type declaration

  • Optional streams?: {
        disabled?: boolean;
        name: string;
        onDemand?: boolean;
    }[]
teleop?: {
    customStreams?: {
        name: string;
        rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
    }[];
    hardwareStreams?: {
        name: string;
        rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
    }[];
    rosStreams?: {
        rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
        topicName: string;
        topicType: string;
    }[];
}

Type declaration

  • Optional customStreams?: {
        name: string;
        rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
    }[]
  • Optional hardwareStreams?: {
        name: string;
        rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
    }[]
  • Optional rosStreams?: {
        rtcStreamType: "boolean" | "numeric" | "twist" | "bitset" | "ping" | "pong" | "ping-v2" | "pong-v2" | "stream-control" | "streams-info" | "agent-info" | "compressed-image" | "h264-video-frame" | "audio-chunk" | "pose" | "goal-id" | "joint-state" | "pose-with-covariance" | "point-cloud" | "marker-array" | "point" | "json-string" | "odometry";
        topicName: string;
        topicType: string;
    }[]
urdfFiles: string[]

Generated using TypeDoc