Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}

§Properties

§
className: string
[src]
§
injectionType: InjectionTypes
[src]
§
parameterConfiguration?: any
[src]
§
parameterIndex: number
[src]
§
parameterMethodName: string
[src]
§
parameterName: string
[src]
§
parameterObjectToInject?: any
[src]
§
parameterOriginalMetadataType?: any
[src]
§
propertyName: string
[src]