Files
Star-wars-card-game/node_modules/@redis/bloom/dist/commands/t-digest/MERGE.d.ts
2026-01-28 00:55:06 +03:00

10 lines
495 B
TypeScript

import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands';
import { CompressionOption } from '.';
export declare const FIRST_KEY_INDEX = 1;
interface MergeOptions extends CompressionOption {
OVERRIDE?: boolean;
}
export declare function transformArguments(destKey: RedisCommandArgument, srcKeys: RedisCommandArgument | Array<RedisCommandArgument>, options?: MergeOptions): RedisCommandArguments;
export declare function transformReply(): 'OK';
export {};