ems-web-app-page-viewer
Version:
This angular.io module is a simple page renderer for apps developed by Educational Media Solutions.
15 lines (14 loc) • 660 B
TypeScript
import { ElementRef, QueryList, AfterViewInit } from '@angular/core';
import { PageViewerService } from "./page-viewer.service";
import * as i0 from "@angular/core";
export declare class PageTemplateComponent implements AfterViewInit {
private service;
private el;
id: string;
title?: string;
template: QueryList<any>;
constructor(service: PageViewerService, el: ElementRef);
ngAfterViewInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PageTemplateComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PageTemplateComponent, "page-template", never, { "id": "id"; "title": "title"; }, {}, ["template"], ["*"]>;
}