ng2-qgrid
Version:
Angular Grid
13 lines (12 loc) • 429 B
TypeScript
import { ViewContainerRef } from '@angular/core';
import { Layer } from './layer';
import { TemplateService } from '../../../template/template.service';
export declare class LayerService {
private templateService;
private container;
private layers;
constructor(templateService: TemplateService);
init(container: ViewContainerRef): void;
create(name: any): Layer;
readonly count: number;
}