vsf-utilities
Version:
Utilities functions shared between vsf projects
13 lines (12 loc) • 501 B
TypeScript
declare function calculateProductTax({ product, taxClasses, taxCountry, taxRegion, sourcePriceInclTax, deprecatedPriceFieldsSupport, finalPriceInclTax, userGroupId, isTaxWithUserGroupIsActive }: {
product: any;
taxClasses: any;
taxCountry?: string;
taxRegion?: string;
sourcePriceInclTax?: boolean;
deprecatedPriceFieldsSupport?: boolean;
finalPriceInclTax?: boolean;
userGroupId?: any;
isTaxWithUserGroupIsActive: any;
}): any;
export default calculateProductTax;