You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
407 B
8 lines
407 B
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;
|
|
|