fix(sorting): add the missing the resources columns.

This commit is contained in:
a.bouhuolia
2021-03-06 14:11:28 +02:00
parent 32e5695950
commit b03a27aefb
9 changed files with 84 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
import { ISystemUser } from './User';
import { IFilterRole } from './DynamicFilter';
export interface IPaginationMeta {
total: number;
@@ -9,6 +10,9 @@ export interface IPaginationMeta {
export interface IExpensesFilter {
page: number;
pageSize: number;
filterRoles?: IFilterRole[];
columnSortBy: string;
sortOrder: string;
}
export interface IExpense {