@unchainedshop/plugins
Version:
Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters
9 lines (8 loc) • 351 B
TypeScript
import { mongodb } from '@unchainedshop/mongodb';
import { type TimestampFields } from '@unchainedshop/mongodb';
export type AppleTransaction = {
_id: string;
matchedTransaction: any;
orderId: string;
} & TimestampFields;
export declare const AppleTransactionsCollection: (db: mongodb.Db) => Promise<mongodb.Collection<AppleTransaction>>;