@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
22 lines • 832 B
TypeScript
import { AppleTransaction } from './db/AppleTransactionsCollection.js';
export declare const configureAppleTransactionsModule: ({ db }: {
db: any;
}) => Promise<{
findTransactionById: (transactionIdentifier: string) => Promise<AppleTransaction>;
createTransaction: (doc: AppleTransaction) => Promise<string>;
}>;
declare const _default: {
appleTransactions: {
configure: ({ db }: {
db: any;
}) => Promise<{
findTransactionById: (transactionIdentifier: string) => Promise<AppleTransaction>;
createTransaction: (doc: AppleTransaction) => Promise<string>;
}>;
};
};
export default _default;
export type AppleTransactionsModule = {
appleTransactions: Awaited<ReturnType<typeof configureAppleTransactionsModule>>;
};
//# sourceMappingURL=module.d.ts.map