@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
9 lines (8 loc) • 363 B
TypeScript
import { type CurrencyCode } from '../../enums/index.js';
import { type ISubscriptionResultResponse } from '../../types/index.js';
export declare class SubscriptionPreviewSummaryResult {
readonly action: 'credit' | 'charge';
readonly amount: string;
readonly currencyCode: CurrencyCode;
constructor(resultResponse: ISubscriptionResultResponse);
}