UNPKG

@aliretail/react-materials-components

Version:
14 lines (13 loc) 435 B
import * as React from 'react'; interface SelectSKUDialogProps { type: string; visible: boolean; primaryKey: string; goodList: any[]; loading?: boolean; onVisibleChange: (v: boolean) => void; goodIds: string[]; onGoodIdsChange: (skuIds: string[]) => void; } declare const SelectSKUDialog: React.ForwardRefExoticComponent<SelectSKUDialogProps & React.RefAttributes<any>>; export default SelectSKUDialog;