UNPKG

@mrboombastic/node-przelewy24

Version:

A simple library for connecting przelewy24 service

23 lines 370 B
/** * Transaction result * * @export * @interface Transaction */ export interface Transaction { /** * Token obtained * * @type {string} * @memberof Transaction */ token: string; /** * Link to pay * * @type {string} * @memberof Transaction */ link: string; } //# sourceMappingURL=Transaction.d.ts.map