Declaration
export type BindMethod = <T>(
serviceIdentifier: ServiceIdentifier<T>,
) => BindToFluentSyntax<T>;API Reference
Type alias for the DI bind function signature. It takes a ServiceIdentifier<T> and returns Inversify BindToFluentSyntax<T> for fluent binding configuration.
export type BindMethod = <T>(
serviceIdentifier: ServiceIdentifier<T>,
) => BindToFluentSyntax<T>;import type { BindMethod } from '@rs-x/core';