vm-product-card
Version:
Este es un paquete de pruebas de desplieque en NPM
13 lines (12 loc) • 524 B
TypeScript
import { InitialValues, onChangeArgs, Product, ProductCartHandlers } from "../interfaces";
import React from "react";
export interface Props {
product: Product;
children: (args: ProductCartHandlers) => JSX.Element;
className?: string;
style?: React.CSSProperties;
onChange?: (args: onChangeArgs) => void;
value?: number;
initialValues?: InitialValues;
}
export declare function ProductCard({ children, product, className, style, onChange, value, initialValues }: Props): JSX.Element;