API Reference

IMultiInjectTokensinterface

Token configuration consumed by registerMultiInjectService. The function adds the class to the multi-injection list identified by multiInjectToken. If serviceToken is provided, the function also binds direct resolution by that token.

Overview

Dependency-injection module built on Inversify.
Quick facts
Kind
interface
Members
2
Package
@rs-x/core

Declaration

export interface IMultiInjectTokens {
  serviceToken?: symbol;
  multiInjectToken: symbol;
}

Import

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

Members

2 members in this interface.

multiInjectToken
property
multiInjectToken: symbol

Type

symbol

serviceToken?
propertyoptional
serviceToken?: symbol

Type

symbol