import type { Pool } from '@entities' import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type GetPoolsInput = { poolIds: string[] } const getPools = (http: HttpClient) => ({ query: ( input: GetPoolsInput, ): Promise> => { return http.get(`v3/admin/pools?ids=${input.poolIds.join()}`) }, }) export default getPools