import { PickRequired } from '../types/pick-required.type'; import { ServiceOptions } from './service-options.interface'; /** * A variant of {@link ServiceOptions} with the dependencies property required. * * @see {@link ServiceOptions} */ export type ServiceOptionsWithDependencies = PickRequired, 'dependencies'>;