UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

12 lines (11 loc) 365 B
import { Order } from '@open-tender/types'; import React from 'react'; import { ScreenConfig } from '../types'; export interface CheckTotalsProps { config: ScreenConfig; check: Order; isSummary?: boolean; displayGratuity?: boolean; } declare const CheckTotals: ({ config, check }: CheckTotalsProps) => React.JSX.Element; export default CheckTotals;