mirror of
https://gitee.com/vant-contrib/vant.git
synced 2026-06-04 09:38:09 +08:00
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import { withInstall } from '../utils';
|
|
import _Search from './Search';
|
|
|
|
const Search = withInstall<typeof _Search>(_Search);
|
|
|
|
export default Search;
|
|
export { Search };
|
|
export type { SearchShape, SearchInstance } from './types';
|