ng2-qgrid
Version:
Angular Grid
15 lines (14 loc) • 528 B
TypeScript
import { AfterViewInit, TemplateRef } from '@angular/core';
import { PluginService } from '../plugin.service';
import { TemplateHostService } from '../../template/template-host.service';
export declare class ExportComponent implements AfterViewInit {
private plugin;
private templateHost;
type: string;
templateRef: TemplateRef<any>;
context: {
$implicit: ExportComponent;
};
constructor(plugin: PluginService, templateHost: TemplateHostService);
ngAfterViewInit(): void;
}