@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 • 361 B
TypeScript
export declare const Security: {
NONE: string;
STATIC_SIGN: string;
DYNAMIC_SIGN: string;
};
declare const generateSignature: ({ security, signKey }: {
security: "" | "static-sign" | "dynamic-sign";
signKey: string;
}) => (...parts: any[]) => Promise<string>;
export default generateSignature;
//# sourceMappingURL=generateSignature.d.ts.map