UNPKG

640 BTypeScriptView Raw
1import { OnInit, ViewContainerRef, Compiler } from '@angular/core';
2import { ActivatedRoute } from '@angular/router';
3import { ActivatedTutorial } from './current-tutorial';
4import { PageTitleService } from './page-title.service';
5export declare class TutorialPage implements OnInit {
6 private route;
7 private compiler;
8 private viewContainerRef;
9 private currentTutorial;
10 private seo;
11 private tutorial;
12 private step;
13 private steps;
14 constructor(route: ActivatedRoute, compiler: Compiler, viewContainerRef: ViewContainerRef, currentTutorial: ActivatedTutorial, seo: PageTitleService);
15 ngOnInit(): void;
16}