UNPKG

@open-tender/store

Version:

A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API

11 lines (10 loc) 366 B
import { CartItem } from '@open-tender/types'; import { UpsellItemProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const UpsellItem: ({ item, callback, isLast, children }: { item: CartItem; callback?: () => void; isLast?: boolean; children: (props: UpsellItemProps) => ReactNode; }) => ReactNode; export default UpsellItem;