vant/src/search/index.ts

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';