File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export default class ActionClient<
2626> extends EventEmitter < {
2727 timeout : undefined ;
2828} > {
29- goals : Partial < Record < string , Goal < TGoal > > > = { } ;
29+ goals : Record < string , Goal < TGoal > > = { } ;
3030 /** flag to check if a status has been received */
3131 receivedStatus = false ;
3232 ros : Ros ;
Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ import type { std_msgs } from "../types/std_msgs.ts";
77 * Base class for TF Clients that provides common functionality.
88 */
99export default class BaseTFClient {
10- frameInfos : Partial <
11- Record < string , { transform ?: Transform ; cbs : ( ( tf : Transform ) => void ) [ ] } >
10+ frameInfos : Record <
11+ string ,
12+ { transform ?: Transform ; cbs : ( ( tf : Transform ) => void ) [ ] }
1213 > = { } ;
1314 republisherUpdateRequested = false ;
1415 ros : Ros ;
You can’t perform that action at this time.
0 commit comments