123
This commit is contained in:
8
node_modules/@redis/search/dist/commands/SUGGET_WITHPAYLOADS.d.ts
generated
vendored
Normal file
8
node_modules/@redis/search/dist/commands/SUGGET_WITHPAYLOADS.d.ts
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import { SugGetOptions } from './SUGGET';
|
||||
export { IS_READ_ONLY } from './SUGGET';
|
||||
export declare function transformArguments(key: string, prefix: string, options?: SugGetOptions): Array<string>;
|
||||
export interface SuggestionWithPayload {
|
||||
suggestion: string;
|
||||
payload: string | null;
|
||||
}
|
||||
export declare function transformReply(rawReply: Array<string | null> | null): Array<SuggestionWithPayload> | null;
|
||||
Reference in New Issue
Block a user