bananas-commerce-admin
Version:
What's this, an admin for apes?
12 lines (11 loc) • 351 B
TypeScript
import React from "react";
import { Price } from "../types/contrib";
export interface PriceRowProps {
price: Price;
isEditing: boolean;
isDisabled: boolean;
onChangeAmount: (amount: string) => void;
onChangeArticleCode?: (amount: string) => void;
onDelete: () => void;
}
export declare const PriceRow: React.FC<PriceRowProps>;