@types/bull
Advanced tools
Comparing version 3.3.2 to 3.3.3
@@ -7,2 +7,3 @@ // Type definitions for bull 3.3 | ||
// Weeco <https://github.com/weeco> | ||
// Gabriel Terwesten <https://github.com/blaugold> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -460,14 +461,14 @@ // TypeScript Version: 2.3 | ||
/** | ||
* Removes a given repeatable job. The RepeatOpts needs to be the same as the ones used for | ||
* the job when it was added. | ||
* Removes a given repeatable job. The RepeatOptions and JobId needs to be the same as the ones | ||
* used for the job when it was added. | ||
*/ | ||
removeRepeatable(repeat: RepeatOptions): Promise<void>; | ||
removeRepeatable(repeat: RepeatOptions & { jobId?: JobId }): Promise<void>; | ||
/** | ||
* Removes a given repeatable job. The RepeatOpts needs to be the same as the ones used for | ||
* the job when it was added. | ||
* Removes a given repeatable job. The RepeatOptions and JobId needs to be the same as the ones | ||
* used for the job when it was added. | ||
* | ||
* name: The name of the to be removed job | ||
*/ | ||
removeRepeatable(name: string, repeat: RepeatOptions): Promise<void>; | ||
removeRepeatable(name: string, repeat: RepeatOptions & { jobId?: JobId }): Promise<void>; | ||
@@ -474,0 +475,0 @@ /** |
{ | ||
"name": "@types/bull", | ||
"version": "3.3.2", | ||
"version": "3.3.3", | ||
"description": "TypeScript definitions for bull", | ||
@@ -26,2 +26,7 @@ "license": "MIT", | ||
"githubUsername": "weeco" | ||
}, | ||
{ | ||
"name": "Gabriel Terwesten", | ||
"url": "https://github.com/blaugold", | ||
"githubUsername": "blaugold" | ||
} | ||
@@ -39,4 +44,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "9834b7f8447f377f6b9d7cb5814fd668ed803b886387485aeca1458c80b87a95", | ||
"typesPublisherContentHash": "daa353d3afebf3f56b2bd8a301ee6ac97cc1c9d8e8543e4ca10d2bfb93b20573", | ||
"typeScriptVersion": "2.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 03 Jan 2018 01:48:55 GMT | ||
* Last updated: Thu, 11 Jan 2018 21:51:19 GMT | ||
* Dependencies: ioredis, bluebird | ||
@@ -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>. | ||
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>. |
23548
505