UNPKG

@asi-ngtools/lib

Version:

This project is a little components library, simple to use, which will help you to simplify your project.

16 lines (15 loc) 533 B
import { AsiFileService } from './../../services/asi-file.service'; import { Renderer, ElementRef, OnChanges } from '@angular/core'; export declare class AsiBindHtml implements OnChanges { private renderer; private elementRef; private fileService; class: string; /** Bind html from string value */ value: string; /** Load html from an url */ fromUrl: string; constructor(renderer: Renderer, elementRef: ElementRef, fileService: AsiFileService); ngOnChanges(): void; initContent(): void; }