@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
15 lines (14 loc) • 419 B
TypeScript
import type { FC } from 'react';
import './index.less';
interface AddDefaultMemberModalProps {
visible: boolean;
memberListed: any[];
departListed: any[];
checkedList: any[];
onCancel: () => void;
onOk: (checkValues: any) => void;
isDefaultMenber: boolean;
selectType?: string;
}
declare const AddDefaultMemberModal: FC<AddDefaultMemberModalProps>;
export default AddDefaultMemberModal;