import type { FdoDecimal, FdoDinero } from '@feedmepos/core/entity'; export type ComparePriceSkuBySupplierInfo = { date: string; totalUnit: FdoDecimal; totalCost?: FdoDinero; unit: FdoInventoryUnit; seqNumber: number; measurement?: FdoUnitMeasurement | null; }; export type ComparePriceSkuBySupplier = Record; export type ComparePriceBySku = Record; export interface SupplierPriceHistoryProps { prices: ComparePriceSkuBySupplier; }