@types/bull
Advanced tools
Comparing version 3.10.0 to 3.10.1
@@ -18,2 +18,3 @@ // Type definitions for bull 3.10 | ||
// DoYoung Ha <https://github.com/hados99> | ||
// Borys Kupar <https://github.com/borys-kupar> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -479,5 +480,5 @@ // TypeScript Version: 2.8 | ||
*/ | ||
process(callback: ProcessCallbackFunction<T>): void; | ||
process(callback: ProcessPromiseFunction<T>): void; | ||
process(callback: string): void; | ||
process(callback: ProcessCallbackFunction<T>): Promise<void>; | ||
process(callback: ProcessPromiseFunction<T>): Promise<void>; | ||
process(callback: string): Promise<void>; | ||
@@ -503,5 +504,5 @@ /** | ||
*/ | ||
process(concurrency: number, callback: ProcessCallbackFunction<T>): void; | ||
process(concurrency: number, callback: ProcessPromiseFunction<T>): void; | ||
process(concurrency: number, callback: string): void; | ||
process(concurrency: number, callback: ProcessCallbackFunction<T>): Promise<void>; | ||
process(concurrency: number, callback: ProcessPromiseFunction<T>): Promise<void>; | ||
process(concurrency: number, callback: string): Promise<void>; | ||
@@ -527,5 +528,5 @@ /** | ||
*/ | ||
process(name: string, callback: ProcessCallbackFunction<T>): void; | ||
process(name: string, callback: ProcessPromiseFunction<T>): void; | ||
process(name: string, callback: string): void; | ||
process(name: string, callback: ProcessCallbackFunction<T>): Promise<void>; | ||
process(name: string, callback: ProcessPromiseFunction<T>): Promise<void>; | ||
process(name: string, callback: string): Promise<void>; | ||
@@ -552,5 +553,5 @@ /** | ||
*/ | ||
process(name: string, concurrency: number, callback: ProcessCallbackFunction<T>): void; | ||
process(name: string, concurrency: number, callback: ProcessPromiseFunction<T>): void; | ||
process(name: string, concurrency: number, callback: string): void; | ||
process(name: string, concurrency: number, callback: ProcessCallbackFunction<T>): Promise<void>; | ||
process(name: string, concurrency: number, callback: ProcessPromiseFunction<T>): Promise<void>; | ||
process(name: string, concurrency: number, callback: string): Promise<void>; | ||
@@ -557,0 +558,0 @@ /* tslint:enable:unified-signatures */ |
{ | ||
"name": "@types/bull", | ||
"version": "3.10.0", | ||
"version": "3.10.1", | ||
"description": "TypeScript definitions for bull", | ||
@@ -81,2 +81,7 @@ "license": "MIT", | ||
"githubUsername": "hados99" | ||
}, | ||
{ | ||
"name": "Borys Kupar", | ||
"url": "https://github.com/borys-kupar", | ||
"githubUsername": "borys-kupar" | ||
} | ||
@@ -95,4 +100,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "320d1cf55cf4e4243a01780030ae638226f95da959ed34de2e199a63f1a91ac1", | ||
"typesPublisherContentHash": "f7e662a8dc6fc912e5fca3af7338d0214fcc05680ab03fffea5d73a3077ad64d", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Tue, 09 Jul 2019 15:49:46 GMT | ||
* Last updated: Mon, 22 Jul 2019 18:41:52 GMT | ||
* Dependencies: @types/ioredis | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Bruno Grieder <https://github.com/bgrieder>, Cameron Crothers <https://github.com/JProgrammer>, Marshall Cottrell <https://github.com/marshall007>, Weeco <https://github.com/weeco>, Gabriel Terwesten <https://github.com/blaugold>, Oleg Repin <https://github.com/iamolegga>, David Koblas <https://github.com/koblas>, Bond Akinmade <https://github.com/bondz>, Wuha Team <https://github.com/wuha-team>, Alec Brunelle <https://github.com/aleccool213>, Dan Manastireanu <https://github.com/danmana>, Kjell-Morten Bratsberg Thorsen <https://github.com/kjellmorten>, Christian D. <https://github.com/pc-jedi>, Silas Rech <https://github.com/lenovouser>, and DoYoung Ha <https://github.com/hados99>. | ||
These definitions were written by Bruno Grieder <https://github.com/bgrieder>, Cameron Crothers <https://github.com/JProgrammer>, Marshall Cottrell <https://github.com/marshall007>, Weeco <https://github.com/weeco>, Gabriel Terwesten <https://github.com/blaugold>, Oleg Repin <https://github.com/iamolegga>, David Koblas <https://github.com/koblas>, Bond Akinmade <https://github.com/bondz>, Wuha Team <https://github.com/wuha-team>, Alec Brunelle <https://github.com/aleccool213>, Dan Manastireanu <https://github.com/danmana>, Kjell-Morten Bratsberg Thorsen <https://github.com/kjellmorten>, Christian D. <https://github.com/pc-jedi>, Silas Rech <https://github.com/lenovouser>, DoYoung Ha <https://github.com/hados99>, and Borys Kupar <https://github.com/borys-kupar>. |
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
34713
725