UNPKG

ia-product-card

Version:

This is a test package of deployment for NPM

42 lines (41 loc) 1.25 kB
/// <reference types="react" /> import { Props as ButtonsProps } from "../components/ProductButtons"; import { Props as ImageProps } from "../components/ProductImage"; import { Props as ProductCardProps } from "../components/ProductCard"; import { Props as TitleProps } from "../components/ProductTitle"; export interface Product { id: string; title: string; img?: string; } export interface ProductContextProps { counter: number; increaseBy: (value: number) => void; product: Product; maxCount?: number; } export interface ProductCardHOCProps { ({ children, product }: ProductCardProps): JSX.Element; Buttons: (Props: ButtonsProps) => JSX.Element; Image: (Props: ImageProps) => JSX.Element; Title: (Props: TitleProps) => JSX.Element; } export interface OnChangeArgs { product: Product; count: number; } export interface ProductInCart extends Product { count: number; } export interface InitialValues { count?: number; maxCount?: number; } export interface ProductCardHandlers { count: number; isMaxCountReached: boolean; maxCount?: number; product: Product; increaseBy: (value: number) => void; reset: () => void; }