bananas-commerce-admin
Version:
What's this, an admin for apes?
14 lines (13 loc) • 425 B
TypeScript
import React from "react";
import { Line, PurchaseDetail } from "../types/purchase";
export interface ReceiptCardProps {
purchase: PurchaseDetail;
refund?: (lines: Line[]) => void;
}
export interface ReceiptPriceRowProps {
title: string;
price: string;
currency: string;
}
export declare const ReceiptPriceRow: React.FC<ReceiptPriceRowProps>;
export declare const ReceiptCard: React.FC<ReceiptCardProps>;