import { ViewContainerRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Directive that exposes a ViewContainerRef for dynamic component loading. * This is used to create a reference point for dynamically loading components * into the DOM without manually handling ViewContainerRef injection. * * @example * *
* * * @ViewChild(Container, { static: true }) container!: Container; * // Now you can use this.container.viewContainerRef for dynamic component creation */ export declare class Container { viewContainerRef: ViewContainerRef; /** * Constructor that exposes the ViewContainerRef for the element * @param viewContainerRef The ViewContainerRef for the element this directive is applied to */ constructor(viewContainerRef: ViewContainerRef); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } //# sourceMappingURL=ng-container-directive.d.ts.map