UNPKG

@paddle/paddle-node-sdk

Version:

A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.

10 lines (9 loc) 469 B
import { NextTransactionAdjustmentItem } from './next-transaction-adjustment-item.js'; import { TotalAdjustments } from '../shared/index.js'; import { type AdjustmentPreviewResponse } from '../../types/index.js'; export declare class NextTransactionAdjustmentPreview { readonly transactionId: string; readonly items: NextTransactionAdjustmentItem[]; readonly totals: TotalAdjustments | null; constructor(adjustmentPreview: AdjustmentPreviewResponse); }