ng2-qgrid
Version:
Angular Grid
11 lines (10 loc) • 379 B
TypeScript
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
import { RootService } from '../../infrastructure/component/root.service';
export declare class MarkupDirective implements OnInit, OnDestroy {
private root;
private element;
name: string;
constructor(root: RootService, element: ElementRef);
ngOnInit(): void;
ngOnDestroy(): void;
}