fastlion-amis
Version:
一种MIS页面生成工具
13 lines (12 loc) • 350 B
TypeScript
import React from 'react';
import { MbContactsData } from '../../types';
import { Api } from '../../../../../types';
import './index.scss';
interface ContactsProps {
contactsDatas: MbContactsData;
onClose: () => void;
depart: string;
api: Api;
}
declare const Bersonnel: React.FC<ContactsProps>;
export default Bersonnel;