eventemitter2
Advanced tools
Comparing version 2.2.0 to 2.2.1
@@ -9,2 +9,6 @@ # Change Log | ||
## [2.2.1] - 2016-11-24 | ||
### Added | ||
- Added missing parameters for emitAsync in typescript definition. @stanleytakamatsu | ||
## [2.2.0] - 2016-11-14 | ||
@@ -11,0 +15,0 @@ ### Added |
@@ -43,3 +43,3 @@ declare let eventemitter2: eventemitter2.Static | ||
emit(event: string| string[],...values: any[]): boolean; | ||
emitAsync(event: string): Promise<any[]>; | ||
emitAsync(event: string| string[],...values: any[]): Promise<any[]>; | ||
addListener(event: string, listener: Listener): emitter; | ||
@@ -46,0 +46,0 @@ on(event: string, listener: Listener): emitter; |
{ | ||
"name": "eventemitter2", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "A Node.js event emitter implementation with namespaces, wildcards, TTL and browser support.", | ||
@@ -5,0 +5,0 @@ "keywords": ["event", "events", "emitter", "eventemitter"], |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35673