(time: number)
| 2272 | }; |
| 2273 | |
| 2274 | var delay = function(time: number): CompositeAnimation { |
| 2275 | // Would be nice to make a specialized implementation |
| 2276 | return timing(new AnimatedValue(0), {toValue: 0, delay: time, duration: 0}); |
| 2277 | }; |
| 2278 | |
| 2279 | var stagger = function( |
| 2280 | time: number, |