export interface fieldListInterface { logicalOperator: string, fieldName: string, comparatorOperator: string, fieldValue: string } export interface sortObjectInterface { 'field': string, 'orderDirection': string } export interface ITableParams { fieldList?: fieldListInterface[], sortObject?: sortObjectInterface 'offset'?: number, 'limit'?: number } export interface ITableApi { // eslint-disable-next-line no-unused-vars dataTable?: (type:string, params: object) => Promise; }