Repository URL to install this package:
|
Version:
2.0.18 ▾
|
import { ReactNode } from 'react';
import { AnimatedCardProps } from 'presets/AnimatedExpandableCard';
export interface ListProps {
productList?: Array<Object>;
}
export interface ShoppingItemProps extends AnimatedCardProps {
item: Object;
index: number;
}
export interface ShoppingItemRenderProp extends Function {
(props: ShoppingItemProps): ReactNode;
}
export interface ShoppingListProps {
className?: string;
shoppingList?: Array<ListProps>;
renderShoppingListItem?: ShoppingItemRenderProp;
}