1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-17 19:41:06 +03:00

fix build

This commit is contained in:
leibale
2021-07-12 13:50:51 -04:00
parent e2ed932802
commit b855150009
5 changed files with 703 additions and 1082 deletions

View File

@@ -5,7 +5,7 @@ import { RedisReply } from './commands';
export interface QueueCommandOptions {
asap?: boolean;
signal?: AbortSignal;
signal?: any; // TODO: TODO: `AbortSignal` type is incorrect
chainId?: symbol;
}
@@ -13,7 +13,7 @@ interface CommandWaitingToBeSent extends CommandWaitingForReply {
encodedCommand: string;
chainId?: symbol;
abort?: {
signal: AbortSignal;
signal: any; // TODO: `AbortSignal` type is incorrect
listener(): void;
};
}