dld_backend/node_modules/@redis/search/dist/commands/SYNUPDATE.d.ts
2025-10-30 12:13:02 +05:30

8 lines
349 B
TypeScript

import { RedisCommandArguments } from '@redis/client/dist/lib/commands';
interface SynUpdateOptions {
SKIPINITIALSCAN?: true;
}
export declare function transformArguments(index: string, groupId: string, terms: string | Array<string>, options?: SynUpdateOptions): RedisCommandArguments;
export declare function transformReply(): 'OK';
export {};