ngx-animations
Version:
An adaptation of Animate.css using @angular/animations
19 lines (18 loc) • 524 B
TypeScript
import { ElementRef } from '@angular/core';
import { AnimationsService } from '../services/animations.service';
export declare class AnimatedDirective {
private el;
private _animationsService;
set animAted(options: {
animation?: any;
time?: any;
});
time: number;
animation: string;
constructor(el: ElementRef, _animationsService: AnimationsService);
animate(options?: {
animation?: any;
time?: any;
}): void;
private createPlayer;
}