broker-factory
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -1,4 +0,3 @@ | ||
import { TValue } from 'worker-factory'; | ||
export interface IBrokerDefinition { | ||
[method: string]: (...params: TValue[]) => void | Promise<void> | Promise<TValue>; | ||
[method: string]: (...args: any[]) => void | Promise<any>; | ||
} |
@@ -73,3 +73,3 @@ { | ||
"types": "build/es2015/module.d.ts", | ||
"version": "1.1.0" | ||
"version": "1.2.0" | ||
} |
@@ -1,7 +0,5 @@ | ||
import { TValue } from 'worker-factory'; | ||
export interface IBrokerDefinition { | ||
[ method: string ]: (...params: TValue[]) => void | Promise<void> | Promise<TValue>; | ||
[ method: string ]: (...args: any[]) => void | Promise<any>; | ||
} |
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
33335
433