@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
8 lines (7 loc) • 305 B
TypeScript
import { CheckoutPromoCodeProps } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const CheckoutPromoCode: ({ showModal, children }: {
showModal: (show: boolean) => void;
children: (props: CheckoutPromoCodeProps) => ReactNode;
}) => ReactNode;
export default CheckoutPromoCode;