You've already forked node-redis
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:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user