Add tslint to devDependencies and clean up the codebase according to tslint suggestions.

This commit is contained in:
László Monda
2016-03-25 02:02:20 +01:00
parent 468606481c
commit 82f181d184
4 changed files with 78 additions and 77 deletions

View File

@@ -1,7 +1,7 @@
/// <reference path="Serializable.ts" />
class KeystrokeAction implements Serializable {
scancode: number;
scancode: number;
modifierMask: number;
fromJsObject(jsObject: any) {
@@ -22,5 +22,5 @@ class KeystrokeAction implements Serializable {
toBinary(buffer: UhkBuffer) {
buffer.writeUInt8(this.scancode);
buffer.writeUInt8(this.modifierMask);
}
}
}