Files
backend_task/node_modules/@redis/search/dist/commands/SUGADD.d.ts
T

8 lines
256 B
TypeScript
Raw Normal View History

2025-02-11 15:06:41 +01:00
interface SugAddOptions {
INCR?: true;
PAYLOAD?: string;
}
export declare function transformArguments(key: string, string: string, score: number, options?: SugAddOptions): Array<string>;
export declare function transformReply(): number;
export {};