Files
module4_backend_project/node_modules/@redis/search/dist/commands/SYNUPDATE.d.ts
T
2025-02-11 15:06:41 +01:00

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 {};