import type {Domain} from '.' import { request} from '.' export async function getDomain(ldhName: string): Promise { const response = await request({ url: 'domains/' + ldhName }) return response.data }