callback-registry
Advanced tools
Comparing version 2.2.4 to 2.2.5
@@ -10,3 +10,3 @@ export interface UnsubscribeFunction { | ||
*/ | ||
add(key: string, callback: (...args) => any): UnsubscribeFunction; | ||
add(key: string, callback: (...args: any[]) => any): UnsubscribeFunction; | ||
@@ -18,5 +18,5 @@ /** | ||
*/ | ||
execute(key: string, ...argumentsArr): object[]; | ||
execute(key: string, ...argumentsArr: any[]): object[]; | ||
} | ||
export default function(): CallbackRegistry; |
{ | ||
"name": "callback-registry", | ||
"version": "2.2.4", | ||
"version": "2.2.5", | ||
"description": "Registry for callbacks", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
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
9496