Repository URL to install this package:
|
Version:
2.1.14 ▾
|
import { ShoppingListProps as ShoppingListPlaceholderProps, ShoppingItemProps as ShoppingItemPlaceholderProps } from 'abstractions/ShoppingList';
import { ItemProps } from 'presets/ProductPieces/ProductItem';
import { SocialIconDataType } from '@skava/ui/dist/components/molecules/SocialIconList';
import { AnimatedCardState } from 'presets/AnimatedExpandableCard';
export interface ListsConfigProps {
listName?: string;
identifier?: number;
accessType?: boolean;
productList?: Array<ItemProps>;
itemCount?: number;
iconsList?: SocialIconDataType;
}
export interface ShoppingListProps extends ShoppingListPlaceholderProps {
}
export interface ShoppingItemProps extends ShoppingItemPlaceholderProps {
item: ListsConfigProps;
}
export interface ShoppingListCollapseState {
collapseState?: AnimatedCardState;
}