import { type ResolvedValueMetadata } from '../../metadata/models/ResolvedValueMetadata.js'; import { type BindingScope } from './BindingScope.js'; import { type bindingTypeValues } from './BindingType.js'; import { type ScopedBinding } from './ScopedBinding.js'; export interface ResolvedValueBinding extends ScopedBinding { readonly factory: (...args: any[]) => TActivated | Promise; readonly metadata: ResolvedValueMetadata; } //# sourceMappingURL=ResolvedValueBinding.d.ts.map