ap-product-card-react-ts
Version:
Este es un paquete de pruebas de despliegue en NPM
49 lines (41 loc) • 1.22 kB
text/typescript
import { JSX } from 'react';
import { Props as ProductButtonsProps } from '../components/ProductButtons';
import { Props as ProductCardProps } from '../components/ProductCard';
import { Props as ProductImageProps } from '../components/ProductImage';
import { Props as ProductTitleProps } from '../components/ProductTitle';
export interface Product {
id: string;
img?: string;
title: string;
}
export interface ProductContextProps {
counter: number;
maxCount?: number;
product: Product;
increaseBy: (value: number) => void;
}
export interface ProductCardHOCProps {
({ children, product, className }: ProductCardProps): JSX.Element;
Buttons: (Props: ProductButtonsProps) => JSX.Element;
Image: (Props: ProductImageProps) => JSX.Element;
Title: (Props: ProductTitleProps) => 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;
reset: () => void;
increaseBy: (value: number) => void;
}