UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

16 lines (15 loc) 576 B
import type { FC } from 'react'; import type { MobileMemberItemProps } from '../MobileMember'; import type { MobileDepartItemProps } from '../MobileDepart'; import './index.less'; interface SelectDataProps { flag: boolean; flagChange: (e: boolean) => void; value: MobileMemberItemProps[]; onSelect: (v: boolean, obj: MobileMemberItemProps) => void; deptOnSelect: (v: boolean, obj: MobileDepartItemProps) => void; deptValue: MobileDepartItemProps[]; onConfirm: () => void; } declare const SelectData: FC<SelectDataProps>; export default SelectData;