Remove open event

Fixes #901
This commit is contained in:
Daniel Imms
2017-08-19 14:33:41 -07:00
parent f520e27f40
commit e848d6afbe
3 changed files with 2 additions and 11 deletions
-2
View File
@@ -63,7 +63,6 @@ namespace methods_core {
t.on('blur', () => {});
t.on('focus', () => {});
t.on('lineFeed', () => {});
t.on('open', () => {});
// args
t.on('data', () => {});
t.on('data', (data: string) => console.log(data));
@@ -89,7 +88,6 @@ namespace methods_core {
t.off('blur', () => {});
t.off('focus', () => {});
t.off('lineFeed', () => {});
t.off('open', () => {});
// args
t.off('data', () => {});
t.off('data', (data: string) => console.log(data));