UNPKG

tubular-common

Version:

Tubular Common Models and Data Transformer

16 lines 400 B
class GridResponse { aggregationPayload; counter; currentPage = 0; filteredRecordCount; payload; totalPages = 1; totalRecordCount; constructor(counter = 0) { this.counter = Number.isNaN(counter) ? 0 : counter; this.filteredRecordCount = 0; this.totalRecordCount = 0; } } export default GridResponse; //# sourceMappingURL=GridResponse.js.map