@anglr/grid
Version:
Angular module displaying grid
23 lines • 900 B
TypeScript
import { ViewContainerRef, OnInit } from '@angular/core';
import { CurrentViewContainer } from '../../interfaces';
import * as i0 from "@angular/core";
/**
* Base class for all renderable content components
*/
export declare abstract class RenderableContentComponent implements OnInit {
/**
* Instance of class that is used for sharing content renderers current view container
*/
protected currentViewContainer: CurrentViewContainer;
/**
* View container available for container element
*/
protected viewContainer: ViewContainerRef;
/**
* Initialize component
*/
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<RenderableContentComponent, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<RenderableContentComponent, never, never, {}, {}, never, never, true, never>;
}
//# sourceMappingURL=renderableContent.component.d.ts.map