(opts: TransitionOptions)
| 86 | }; |
| 87 | |
| 88 | const runTransition = async (opts: TransitionOptions): Promise<TransitionResult> => { |
| 89 | const animationBuilder = await getAnimationBuilder(opts); |
| 90 | |
| 91 | const ani = animationBuilder && Build.isBrowser ? animation(animationBuilder, opts) : noAnimation(opts); // fast path for no animation |
| 92 | |
| 93 | return ani; |
| 94 | }; |
| 95 | |
| 96 | const afterTransition = (opts: TransitionOptions) => { |
| 97 | const enteringEl = opts.enteringEl; |
no test coverage detected