import { type ServiceIdentifier } from '@inversifyjs/common'; import { type BindingConstraints } from './BindingConstraints.js'; import { type BindingType } from './BindingType.js'; export interface BaseBinding { readonly id: number; readonly moduleId: number | undefined; readonly serviceIdentifier: ServiceIdentifier; readonly type: TType; readonly isSatisfiedBy: (constraints: BindingConstraints) => boolean; } //# sourceMappingURL=BaseBinding.d.ts.map