import type {IcannAccreditation} from './index' import {request} from './index' interface IcannAccreditationList { 'hydra:totalItems': number 'hydra:member': IcannAccreditation[] } export async function getIcannAccreditations(params: object): Promise { return (await request({ url: 'icann-accreditations', params })).data }