@foblex/flow-animator
Version:
Animation library for @foblex/flow.
9 lines (8 loc) • 374 B
TypeScript
import { AnimateNodeOverlayRequest } from './animate-node-overlay-request';
import { AnimationBuilder } from '@angular/animations';
import { Observable } from 'rxjs';
export declare class AnimateNodeOverlayHandler {
private animationBuilder;
constructor(animationBuilder: AnimationBuilder);
handle(request: AnimateNodeOverlayRequest): Observable<HTMLElement>;
}