ngx-lottie
Version:
<h1 align="center"> <img src="https://raw.githubusercontent.com/ngx-lottie/ngx-lottie/master/docs/assets/lottie.gif"> </h1>
9 lines (8 loc) • 449 B
TypeScript
import { ElementRef, OnChanges, SimpleChanges, NgZone } from '@angular/core';
import { BaseDirective } from './base.directive';
import { AnimationLoader } from './animation-loader';
export declare class LottieDirective extends BaseDirective implements OnChanges {
private host;
constructor(ngZone: NgZone, platformId: string, host: ElementRef<HTMLElement>, animationLoader: AnimationLoader);
ngOnChanges(changes: SimpleChanges): void;
}