Show data Table with pagination (startRow, endRow, filter, sorting)

This commit is contained in:
Paolo Arena
2019-10-14 20:32:15 +02:00
parent 96b7b7a48b
commit 0ee08f8430
9 changed files with 265 additions and 44 deletions

View File

@@ -201,3 +201,11 @@ export interface IFunctionality {
BOOKING_EVENTS?: boolean
}
export interface IParamsQuery {
table: string
startRow: number
endRow: number
filter: string
sortBy: any
descending: number
}