vant/src/contact-list/index.ts
2021-03-08 17:14:55 +08:00

9 lines
258 B
TypeScript

import { withInstall } from '../utils';
import _ContactList from './ContactList';
const ContactList = withInstall<typeof _ContactList>(_ContactList);
export default ContactList;
export { ContactList };
export type { ContactListItem } from './ContactList';