const printPriceDiff Target Style export const printPriceDiff = ({ from, to }) => { Prints a price difference table using named values. Target style API. Preferred for new code. Parametersoptions{ from: Record<string, number>, to: Record<string, number> } Returnsvoid
const printPriceTable Legacy Style export const printPriceTable = (prevValue, nextValue) => printPriceDiff({ from: prevValue, to: nextValue }) No description provided. Legacy API. Kept for older code and not the preferred choice for new code.