UNPKG

365 BTypeScriptView Raw
1import { Observable } from 'rxjs';
2import { Http } from '@angular/http';
3export declare class StepsTemplatesLoader {
4 private http;
5 private cache;
6 constructor(http: Http);
7 escapeAngularBindings(html: string): string;
8 convertToHtmlTags(tutorialName: string, markdown: string): string;
9 load(tutorialName: any, url?: string): Observable<any>;
10}