API Reference

BindMethodtype

Type alias for the DI bind function signature. It takes a ServiceIdentifier<T> and returns Inversify BindToFluentSyntax<T> for fluent binding configuration.

Quick facts
Kind
type
Package
@rs-x/core

Declaration

export type BindMethod = <T>(
  serviceIdentifier: ServiceIdentifier<T>,
) => BindToFluentSyntax<T>;

Import

import type { BindMethod } from '@rs-x/core';