diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-07-11 02:26:24 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-07-11 02:26:24 -0400 |
commit | a1c6b6df4eb6a30bca9603dac449dc937fb479fc (patch) | |
tree | 3d0dd2d041f333fc8ddf594c0c4415df7b6d8e56 /src/Utils.ts | |
parent | 4b3c7ea33d564711566232acf2e8450aee1219fc (diff) | |
parent | b1b69f8a4f9e34f0c8e667ec95f9fe16ebc8b2e4 (diff) |
merged with master and fixed linter / errors
Diffstat (limited to 'src/Utils.ts')
-rw-r--r-- | src/Utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.ts b/src/Utils.ts index 64abd7fc1..a62f9b4ff 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -73,7 +73,7 @@ export class Utils { }; } - public static emit<T>(socket: Socket | SocketIOClient.Socket, message: Message<T>, args: T) { + public static Emit<T>(socket: Socket | SocketIOClient.Socket, message: Message<T>, args: T) { this.log("Emit", message.Name, args, false); socket.emit(message.Message, args); } |