@blueleader07/typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
15 lines (13 loc) • 435 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DynamoPage = void 0;
class DynamoPage {
constructor(content, pageable, lastEvaluatedKey) {
this.content = content;
this.size = pageable.pageSize;
this.lastEvaluatedKey = lastEvaluatedKey;
this.numberOfElements = this.content.length;
}
}
exports.DynamoPage = DynamoPage;
//# sourceMappingURL=DynamoPage.js.map