ng2-qgrid
Version:
Angular Grid
16 lines (15 loc) • 667 B
TypeScript
import { ElementRef, OnInit, OnDestroy } from '@angular/core';
import { NgComponent } from '../../infrastructure/component/ng.component';
import { RootService } from '../../infrastructure/component/root.service';
import { Model } from 'ng2-qgrid/core/infrastructure/model';
import { ThemeService } from '../../template/theme.service';
export declare class BoxComponent extends NgComponent implements OnInit, OnDestroy {
private root;
private element;
private theme;
private boxModel;
constructor(root: RootService, element: ElementRef, theme: ThemeService);
ngOnInit(): void;
initTheme(): void;
readonly model: Model;
}