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