()
| 246 | |
| 247 | let _easeInOut; |
| 248 | function easeInOut() { |
| 249 | if (!_easeInOut) { |
| 250 | const Easing = require('Easing'); |
| 251 | _easeInOut = Easing.inOut(Easing.ease); |
| 252 | } |
| 253 | return _easeInOut; |
| 254 | } |
| 255 | |
| 256 | class TimingAnimation extends Animation { |
| 257 | _startTime: number; |
no test coverage detected
searching dependent graphs…