Disable tslint for unified signatures

This commit is contained in:
Gregor Yushinov
2017-11-14 15:21:35 +01:00
parent ef92e136d1
commit 30763aa85f

View File

@@ -318,6 +318,7 @@ declare namespace Bull {
*
* @param name Bull will only call the handler if the job name matches
*/
// tslint:disable-next-line:unified-signatures
process(name: string, callback: (job: Job) => void): Promise<any>;
/**
@@ -333,6 +334,7 @@ declare namespace Bull {
*
* @param name Bull will only call the handler if the job name matches
*/
// tslint:disable-next-line:unified-signatures
process(name: string, callback: (job: Job, done: DoneCallback) => void): void;
/**