fastlion-amis
Version:
一种MIS页面生成工具
16 lines (15 loc) • 465 B
TypeScript
import React from 'react';
import { ReceiverData, MbContactsData } from './types';
import './index.scss';
interface ContactsProps {
defaultReceiverDatas: ReceiverData[];
isPick: boolean;
onConfirm: (datas: ReceiverData[]) => void;
onClose: () => void;
visible: boolean;
contacts: MbContactsData[];
titleShow?: Boolean;
quantity?: number;
}
declare const MbContacts: React.FC<ContactsProps>;
export default MbContacts;