mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
* aquarius refactor Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro> * fix highest liquidity Signed-off-by: mihaisc <mihai@oceanprotocol.com> * fix * update search Signed-off-by: mihaisc <mihai@oceanprotocol.com> * remove test code Signed-off-by: mihaisc <mihai@oceanprotocol.com> * remove logs&unused dep * remove old types * fix bookmarks * fix downloaded assets * fix published list * fix profile * fix compute history * fix compute * fix edit compute * remove old commented code
9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
import { SortDirectionOptions } from '../SortAndFilters'
|
|
export interface SearchQuery {
|
|
from?: number
|
|
size?: number
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
query: any
|
|
sort?: { [jsonPath: string]: SortDirectionOptions }
|
|
}
|