@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
7 lines (6 loc) • 329 B
TypeScript
import { Collection } from '../../internal/base/index.js';
import { type ITransactionResponse } from '../../types/index.js';
import { Transaction } from './transaction.js';
export declare class TransactionCollection extends Collection<ITransactionResponse, Transaction> {
fromJson(data: ITransactionResponse): Transaction;
}