UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

18 lines (17 loc) 536 B
import type { FC } from 'react'; import './index.less'; export interface MobileDepartItemProps { orgName: string; orgId: string; isSonOrg?: number | string; } interface MobileDepartProps { value: MobileDepartItemProps[]; onClick: (res: MobileDepartItemProps) => void; compType?: 'depart' | 'member'; departList?: MobileDepartItemProps[]; onSelect?: (flag: boolean, res: MobileDepartItemProps) => void; flag?: boolean; } declare const MobileDepart: FC<MobileDepartProps>; export default MobileDepart;