@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) • 383 B
TypeScript
import { Order } from '@open-tender/types';
import { CheckTotalsProps } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const CheckTotals: ({ check, isSummary, displayGratuity, children }: {
check: Order;
isSummary?: boolean;
displayGratuity?: boolean;
children: (props: CheckTotalsProps) => ReactNode;
}) => ReactNode;
export default CheckTotals;