diff --git a/services/adapter.ts b/services/adapter.ts index 47c79f5..9abc43d 100644 --- a/services/adapter.ts +++ b/services/adapter.ts @@ -21,9 +21,9 @@ fetch.Promise = Bluebird.Promise; // Sadly these need to be manually typed according to // https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node -// since types infered from Bluebird.Promise.promisify are wrong. -// @ts-expect-error +// since types inferred from Bluebird.Promise.promisify are wrong. export const asyncPipeline: ( + arg1: NodeJS.ReadableStream, ...args: ReadonlyArray ) => Promise = Bluebird.Promise.promisify(pipeline); export const asyncExecFile: (