@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
9 lines (8 loc) • 308 B
TypeScript
import { CheckoutHeaderProps } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const CheckoutHeader: ({ title, subtitle, children }: {
title: string;
subtitle?: string | null;
children: (props: CheckoutHeaderProps) => ReactNode;
}) => ReactNode;
export default CheckoutHeader;