From 30763aa85f54df09e1b45adb5d6f65f2759443fb Mon Sep 17 00:00:00 2001 From: Gregor Yushinov Date: Tue, 14 Nov 2017 15:21:35 +0100 Subject: [PATCH] Disable tslint for unified signatures --- types/bull/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/bull/index.d.ts b/types/bull/index.d.ts index 3208637a32..937b8eb632 100644 --- a/types/bull/index.d.ts +++ b/types/bull/index.d.ts @@ -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; /** @@ -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; /**