/** * Predicate used to filter a service. Return `true` to match a service and * `false` to not match. */ export type ServicePredicate = (service: S) => boolean;