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

Mandarine.MandarineCore.ComponentRegistryContext

import type { Mandarine } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/main-core/Mandarine.ns.ts"; 

const { ComponentRegistryContext } = Mandarine.MandarineCore;

Refers to the context of the component inside the DI container. When a request is made to the DI container, this is what the request returns.

interface ComponentRegistryContext {
componentInstance: any;
componentName?: string;
componentType: ComponentTypes;
isServiceType?: boolean;
}

§Properties

§
componentInstance: any
[src]
§
componentName?: string
[src]
§
componentType: ComponentTypes
[src]
§
isServiceType?: boolean
[src]