5 lines
204 B
TypeScript
5 lines
204 B
TypeScript
import type { SearchConfig } from "../TreeSelect";
|
|
export default function useSearchConfig(showSearch: boolean | SearchConfig, props: SearchConfig & {
|
|
inputValue: string;
|
|
}): [boolean, SearchConfig];
|