UNPKG

@leapfrogtechnology/db-model

Version:

Low-footprint database abstraction layer and model built on top of Knex.

10 lines (9 loc) 192 B
/** * Output interface for final response of pagination. */ interface PaginationResult<T> { totalCount: number; maxRows: number; records: T[]; } export default PaginationResult;