* Add special animation effects * @param {string} type - animation effects name * @param {number} time - time of animation * @param {number} delay - delay of animation * @public
(type, time, delay)
| 255 | * @public |
| 256 | */ |
| 257 | addEffect(type, time, delay) { |
| 258 | this.animations.addEffect(type, time, delay); |
| 259 | } |
| 260 | |
| 261 | addAnimate(animation) { |
| 262 | return this.animations.addAnimate(animation); |
no outgoing calls
no test coverage detected