UNPKG

@darwino/darwino

Version:

A set of Javascript classes and utilities

30 lines (23 loc) 388 B
/* * (c) Copyright Darwino Inc. 2014-2017. */ export default class EmptyDataFetcher { constructor(props) { Object.assign(this, props); } init() {} getRows(skip, limit) { return []; } getRow(i) { return null; } getRowCount() { return 0; } hasMoreRows() { return false; } loadMoreRows() {} } //# sourceMappingURL=EmptyDataFetcher.js.map