import { type LazyServiceIdentifier, type ServiceIdentifier } from '@inversifyjs/common'; import { type BaseClassElementMetadata } from './BaseClassElementMetadata.js'; import { type MetadataName } from './MetadataName.js'; import { type MetadataTag } from './MetadataTag.js'; export interface BaseManagedClassElementMetadata extends BaseClassElementMetadata { isFromTypescriptParamType?: true; name: MetadataName | undefined; optional: boolean; tags: Map; value: ServiceIdentifier | LazyServiceIdentifier; } //# sourceMappingURL=BaseManagedClassElementMetadata.d.ts.map