devextreme
Version:
JavaScript/TypeScript Component Suite for Responsive Web Development
20 lines (19 loc) • 532 B
JavaScript
/**
* DevExtreme (esm/__internal/pagination/__tests__/__mock__/model/pager.js)
* Version: 25.2.8
* Build date: Mon Jun 08 2026
*
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
const CLASSES = {
pagination: "dx-pagination"
};
export class PagerModel {
constructor(root) {
this.root = root
}
getElement() {
return this.root.querySelector(`.${CLASSES.pagination}`)
}
}