(r: AnimationRule<Styles | ParsedStyles>)
| 32 | }; |
| 33 | |
| 34 | const getStartTime = (r: AnimationRule<Styles | ParsedStyles>): number => |
| 35 | r.timeframe ? r.timeframe[0] : r.at; |
| 36 | |
| 37 | const getEndTime = (r: AnimationRule<Styles | ParsedStyles>): number => |
| 38 | r.timeframe ? r.timeframe[1] : r.at; |
no outgoing calls
no test coverage detected
searching dependent graphs…