You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/core/Ros.ts
-5Lines changed: 0 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -49,30 +49,25 @@ export default class Ros extends EventEmitter<
49
49
isConnected=false;
50
50
transportLibrary: "websocket"|RTCPeerConnection;
51
51
transportOptions;
52
-
groovyCompatibility: boolean;
53
52
/**
54
53
* @param [options]
55
54
* @param [options.url] - The WebSocket URL for rosbridge. Can be specified later with `connect`.
56
-
* @param [options.groovyCompatibility=true] - Don't use interfaces that changed after the last groovy release or rosbridge_suite and related tools.
57
55
* @param [options.transportLibrary='websocket'] - 'websocket', or an RTCPeerConnection instance controlling how the connection is created in `connect`.
58
56
* @param [options.transportOptions={}] - The options to use when creating a connection. Currently only used if `transportLibrary` is RTCPeerConnection.
0 commit comments