ng2-qgrid
Version:
Angular Grid
14 lines (13 loc) • 665 B
TypeScript
import { ViewContainerRef, EmbeddedViewRef } from '@angular/core';
import { TemplateLink } from './template-link';
import { TemplateLinkService } from './template-link.service';
import { TemplateCacheService } from './template-cache.service';
export declare class TemplateService {
private templateLink;
private templateCache;
constructor(templateLink: TemplateLinkService, templateCache: TemplateCacheService);
viewFactory(context: object): (link: TemplateLink, viewContainerRef: ViewContainerRef) => EmbeddedViewRef<any>;
find(keys: string | string[]): TemplateLink;
private lookInCache(keys);
private lookInLink(keys);
}