import { Params } from "@angular/router"; import { GmTableConfigurationFieldFilter } from "./gm-table-configuration-field-filter"; import { GmQueryParams } from "./gm-query-params"; export interface IFilterQueryParamsService { lastParams: GmQueryParams; prefix: string; fromQueryParams(params: Params, filters: GmTableConfigurationFieldFilter[]): any; setQueryParams(currentPage: any, pageSize: any, filters: GmTableConfigurationFieldFilter[], filterValue: Params): any; }