make client socket public

This commit is contained in:
Rik Berkelder 2021-01-30 03:36:25 +01:00
parent 56338f2262
commit bdfcf47aca

View file

@ -10,7 +10,7 @@ import { OSCArgument, OSCType, OSCArgumentType } from './types';
```
*/
export class OSCClient {
private socket: dgram.Socket;
public socket: dgram.Socket;
private host: string;
private port: number;
constructor(host: string, port: number) {