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

10 lines (9 loc) 361 B
import { Handlers, CheckoutFooterProps } from '@open-tender/ui'; import { ReactNode } from 'react'; declare const CheckoutFooter: ({ handlers, backTitle, proceedTitle, children }: { handlers: Handlers; backTitle: string; proceedTitle?: string; children: (props: CheckoutFooterProps) => ReactNode; }) => ReactNode; export default CheckoutFooter;