We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
false
1 parent 8b5c4fb commit e4c8e90Copy full SHA for e4c8e90
src/tf/TFClient.ts
@@ -16,13 +16,11 @@ import BaseTFClient from "./BaseTFClient.js";
16
* A TF Client that listens to TFs from tf2_web_republisher.
17
*/
18
export default class TFClient extends BaseTFClient {
19
- currentGoal:
20
- | Goal<
21
- tf2_web_republisher.TFSubscriptionGoal,
22
- tf2_web_republisher.TFSubscriptionFeedback
23
- >
24
- | false = false;
25
- currentTopic: Topic<tf2_msgs.TFMessage> | false = false;
+ currentGoal?: Goal<
+ tf2_web_republisher.TFSubscriptionGoal,
+ tf2_web_republisher.TFSubscriptionFeedback
+ >;
+ currentTopic?: Topic<tf2_msgs.TFMessage>;
26
actionClient: ActionClient<
27
tf2_web_republisher.TFSubscriptionGoal,
28
tf2_web_republisher.TFSubscriptionFeedback
0 commit comments