@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
14 lines (13 loc) • 518 B
TypeScript
import { InputButtonProps, ScreenConfig, Styles } from '@open-tender/ui';
import React, { ReactNode } from 'react';
declare const CheckoutTable: ({ label, labelStyle, openTable, InputButtonView, children }: {
label: string;
labelStyle?: Styles;
openTable: () => void;
InputButtonView: (props: InputButtonProps) => React.ReactNode;
children: (props: {
config: ScreenConfig;
renderTableInput: () => ReactNode;
}) => ReactNode;
}) => React.ReactNode;
export default CheckoutTable;