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