UNPKG

@arteneo/forge

Version:
10 lines (9 loc) 354 B
import FiltersInterface from "../../../components/Table/definitions/FiltersInterface"; import QuerySortingInterface from "../../../components/Table/definitions/QuerySortingInterface"; interface QueryInterface { page: number; rowsPerPage: number; sorting: QuerySortingInterface; filters: FiltersInterface; } export default QueryInterface;