mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
fix(sorting): add the missing the resources columns.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import { IFilterRole } from './DynamicFilter';
|
||||
|
||||
export interface IExchangeRate {
|
||||
id: number,
|
||||
@@ -21,6 +22,9 @@ export interface IExchangeRateEditDTO {
|
||||
export interface IExchangeRateFilter {
|
||||
page: number,
|
||||
pageSize: number,
|
||||
filterRoles?: IFilterRole[];
|
||||
columnSortBy: string;
|
||||
sortOrder: string;
|
||||
};
|
||||
|
||||
export interface IExchangeRatesService {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user