mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 00:43:04 +00:00
6 lines
203 B
TypeScript
6 lines
203 B
TypeScript
export declare const getSuggestion: ({ value, suggestions, format, }: {
|
|
value: string | null;
|
|
suggestions: string[];
|
|
format?: ((suggestion: string) => string) | undefined;
|
|
}) => string;
|