UNPKG

ng2-qgrid

Version:
20 lines (19 loc) 754 B
import { AfterViewInit, ElementRef, TemplateRef } from '@angular/core'; import { PluginService } from '../plugin.service'; import { ColumnModel } from 'ng2-qgrid/core/column-type/column.model'; import { TemplateHostService } from '../../template/template-host.service'; export declare class ImportComponent implements AfterViewInit { private plugin; private templateHost; private hostElement; options: any; templateRef: TemplateRef<any>; context: { $implicit: ImportComponent; }; constructor(plugin: PluginService, templateHost: TemplateHostService, hostElement: ElementRef); ngAfterViewInit(): void; readonly rows: any[]; readonly columns: ColumnModel[]; readonly id: string; }