This commit is contained in:
Andy Hanson
2017-06-01 07:55:17 -07:00
parent 472bd8bca8
commit a39e51dced

View File

@@ -234,7 +234,7 @@ interface EventEmitter extends EventEmitterListener {
*
* emitter.emit('someEvent', 'abc'); // logs 'abc'
*/
emit(eventType: string,...param:any[]): void
emit(eventType: string, ...params: any[]): void
/**
* Removes the given listener for event of specific type.