Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { ProductDetailsProps as ProductDetailsPlaceholderProps } from 'abstractions/Subscription'

export interface ListProps {
  label?: string
  value?: string
  isSelected?: string
}

export type ListPropsType = Array<ListProps>

export interface ItemDetailsProps {
  name?: string
  regPrice?: string
  quantity?: string
  dropdownList?: ListPropsType
  radioButtonList?: ListPropsType
  onQuantityInputChange?: Function
}

export interface ProductDetailsProps extends ProductDetailsPlaceholderProps {
  item?: ItemDetailsProps
}