()
| 368 | }; |
| 369 | |
| 370 | const getDelay = () => { |
| 371 | if (forceDelayValue !== undefined) { |
| 372 | return forceDelayValue; |
| 373 | } |
| 374 | if (_delay !== undefined) { |
| 375 | return _delay; |
| 376 | } |
| 377 | if (parentAnimation) { |
| 378 | return parentAnimation.getDelay(); |
| 379 | } |
| 380 | |
| 381 | return 0; |
| 382 | }; |
| 383 | |
| 384 | const getKeyframes = () => { |
| 385 | return _keyframes; |
no test coverage detected