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

8 lines
256 B
TypeScript

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