1 | import { ComponentFactoryResolver, OnInit, OnDestroy } from '@angular/core';
|
2 | import { Cell } from '../../../lib/data-set/cell';
|
3 | import { ViewCell } from './view-cell';
|
4 | export declare class CustomViewComponent implements OnInit, OnDestroy {
|
5 | private resolver;
|
6 | customComponent: any;
|
7 | cell: Cell;
|
8 | dynamicTarget: any;
|
9 | constructor(resolver: ComponentFactoryResolver);
|
10 | ngOnInit(): void;
|
11 | ngOnDestroy(): void;
|
12 | protected createCustomComponent(): void;
|
13 | protected callOnComponentInit(): void;
|
14 | protected patchInstance(): void;
|
15 | protected getPatch(): ViewCell;
|
16 | }
|