DI.InjectionMetadataContext
import type { DI } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts";
const { InjectionMetadataContext } = DI;
Structure of injections in methods' arguments.
interface InjectionMetadataContext {
className: string;
injectionType: InjectionTypes;
parameterConfiguration?: any;
parameterIndex: number;
parameterMethodName: string;
parameterName: string;
parameterObjectToInject?: any;
parameterOriginalMetadataType?: any;
propertyName: string;
}