Declaration
export interface IMultiInjectService {
target: Newable<unknown>;
token: symbol;
}API Reference
Represents one service in a multi-inject list: target is the concrete class, and token is the alias used to resolve that class.
export interface IMultiInjectService {
target: Newable<unknown>;
token: symbol;
}import type { IMultiInjectService } from '@rs-x/core';2 members in this interface.
target: Newable<unknown>Type
Newable<unknown>
token: symbolType
symbol