UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

17 lines (16 loc) 724 B
import { OnInit, ViewContainerRef, Type, EventEmitter, ComponentFactoryResolver } from '@angular/core'; import { AbstractDataViewWrapper } from './AbstractDataViewWrapper'; export declare class DataViewWrapper extends AbstractDataViewWrapper implements OnInit { static readonly TYPE_NAME: string; protected componentType: Type<any>; protected data: any; protected options: any; protected eventHandler: EventEmitter<any>; private componentRef; constructor(target: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver); ngOnInit(): void; ngOnChanges(changes: any): void; render(): void; getEventHandler(): EventEmitter<any>; setEventHandler(event: any): void; }