@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
12 lines (11 loc) • 390 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReportCollection = void 0;
const index_js_1 = require("../../internal/base/index.js");
const report_js_1 = require("./report.js");
class ReportCollection extends index_js_1.Collection {
fromJson(data) {
return new report_js_1.Report(data);
}
}
exports.ReportCollection = ReportCollection;