UNPKG

@aliretail/react-materials-components

Version:
16 lines (15 loc) 562 B
import * as React from 'react'; export interface SelectGoodDialogProps { name?: string; value?: string[]; /** 货品类型 */ type?: 'normal' | 'group'; onChange?: (value: string[]) => void; /** 获取普通货品 */ onFetchNormalGoods: (params: any) => Promise<any>; /** 获取组合货品 */ onFetchGroupGoods: (params: any) => Promise<any>; children?: React.ReactNode; } declare const SelectGoodDialog: React.ForwardRefExoticComponent<SelectGoodDialogProps & React.RefAttributes<any>>; export default SelectGoodDialog;