UNPKG

@iotile/iotile-cloud

Version:

A typescript library for interfacing with the IOTile Cloud API

17 lines 478 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Page = /** @class */ (function () { function Page(url, thisPage, pageCount) { this.baseUrl = url; this.page = thisPage; this.pageCount = pageCount; } Page.prototype.pageUrl = function () { var url = this.baseUrl; url += '&page=' + this.page; return url; }; return Page; }()); exports.Page = Page; //# sourceMappingURL=page.js.map