import type { AddressInfo } from './AddressInfo'; import type { ServiceInterfaceId } from './ServiceInterfaceId'; import type { ServiceInterfaceType } from './ServiceInterfaceType'; export type ServiceInterface = { id: ServiceInterfaceId; name: string; description: string; masked: boolean; addressInfo: AddressInfo; type: ServiceInterfaceType; };