@aliretail/react-materials-components
Version:
14 lines (13 loc) • 435 B
TypeScript
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;