@unchainedshop/plugins
Version:
Because of a Typescript issue with upstream "postfinancecheckout", the Postfinance plugin has been disabled from transpilation, import the source ts files from src and enable node_module tsc or copy over the src/payment/postfinance-checkout to your projec
11 lines • 405 B
TypeScript
import { IOrderPricingAdapter } from '@unchainedshop/core';
interface PriceRoundSettings {
defaultPrecision: number;
roundTo: (value: number, precision: number, currency: string) => number;
}
export declare const OrderPriceRound: IOrderPricingAdapter & {
configure: (params: PriceRoundSettings) => void;
settings: PriceRoundSettings;
};
export {};
//# sourceMappingURL=order-round.d.ts.map