@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) • 337 B
TypeScript
import { type INotificationResponse } from '../../types/index.js';
import { Notification } from './notification.js';
import { Collection } from '../../internal/base/index.js';
export declare class NotificationCollection extends Collection<INotificationResponse, Notification> {
fromJson(data: INotificationResponse): Notification;
}