ng2-qgrid
Version:
Angular Grid
16 lines (15 loc) • 591 B
TypeScript
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
import { Tr } from 'ng2-qgrid/core/dom/tr';
import { ViewCoreService } from '../view/view-core.service';
import { RootService } from '../../../infrastructure/component/root.service';
export declare class TrhCoreDirective implements Tr, OnInit, OnDestroy {
$view: ViewCoreService;
private root;
index: number;
model: any;
source: any;
element: HTMLElement;
constructor($view: ViewCoreService, root: RootService, elementRef: ElementRef);
ngOnInit(): void;
ngOnDestroy(): void;
}