Repository URL to install this package:
|
Version:
0.9.5 ▾
|
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
}