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 {
  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
}