2019-08-09 10:26:22 +00:00
|
|
|
import urlJoin from "url-join";
|
2019-06-19 14:40:52 +00:00
|
|
|
|
|
|
|
export const taxSection = "/taxes/";
|
|
|
|
|
|
|
|
export const countryListPath = taxSection;
|
|
|
|
export const countryListUrl = taxSection;
|
|
|
|
|
|
|
|
export const countryTaxRatesPath = (code: string) => urlJoin(taxSection, code);
|
|
|
|
export const countryTaxRatesUrl = countryTaxRatesPath;
|