import { IAccess } from "../access"; export type CnameProvider = { id: any; domain: string; title?: string; dnsProviderType?: string; access?: IAccess; accessId?: any; }; export type CnameRecord = { id: any; domain: string; hostRecord: string; recordValue: string; cnameProvider: CnameProvider; status: string; commonDnsProvider?: any; }; export type ICnameProxyService = { getByDomain: (domain: string) => Promise; };