@@ -23,55 +23,6 @@ export declare class CssAnimator {
2323 */
2424 constructor ( ) ;
2525
26- /**
27- * Add multiple listeners at once to the given element
28- *
29- * @param el the element to attach listeners to
30- * @param s collection of events to bind listeners to
31- * @param fn callback that gets executed
32- */
33- _addMultipleEventListener ( el : HTMLElement , s : string , fn : Function ) : void ;
34-
35- /**
36- * Vendor-prefix save method to get the animation-delay
37- *
38- * @param element the element to inspect
39- * @returns animation-delay in seconds
40- */
41- _getElementAnimationDelay ( element : HTMLElement ) : number ;
42-
43- /**
44- * Vendor-prefix safe method to get the animation names
45- *
46- * @param element the element to inspect
47- * @returns array of animation names
48- */
49- _getElementAnimationNames ( element : HTMLElement ) : Array < String > ;
50-
51- /**
52- * Run an animation for the given element with the specified className
53- *
54- * @param element the element to be animated
55- * @param className the class to be added and removed
56- * @returns {Promise<Boolean> }
57- */
58- _performSingleAnimate ( element : HTMLElement , className : string ) : Promise < boolean > ;
59-
60- /**
61- * Triggers a DOM-Event with the given type as name and adds the provided element as detail
62- * @param eventType the event type
63- * @param element the element to be dispatched as event detail
64- */
65- _triggerDOMEvent ( eventType : string , element : HTMLElement ) : void ;
66-
67- /**
68- * Returns true if there is a new animation with valid keyframes
69- * @param animationNames the current animation style.
70- * @param prevAnimationNames the previous animation style
71- * @private
72- */
73- _animationChangeWithValidKeyframe ( animationNames : Array < string > , prevAnimationNames : Array < string > ) : boolean ;
74-
7526 /* Public API Begin */
7627 /**
7728 * Execute a single animation.
0 commit comments