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