vsf-utilities
Version:
Utilities functions shared between vsf projects
9 lines (8 loc) • 317 B
TypeScript
declare function updateProductPrices({ product, rate, sourcePriceInclTax, deprecatedPriceFieldsSupport, finalPriceInclTax }: {
product: any;
rate: any;
sourcePriceInclTax?: boolean;
deprecatedPriceFieldsSupport?: boolean;
finalPriceInclTax?: boolean;
}): void;
export default updateProductPrices;