From a15ae349ce7e82539b2f15d32a6a29719fa9ff8b Mon Sep 17 00:00:00 2001 From: Alexander Gorshenev Date: Thu, 28 Nov 2024 17:35:22 +0300 Subject: [PATCH] Workaround name clash in runtime vs arkoala AnimationRange is present in both Signed-off-by: Alexander Gorshenev --- incremental/runtime/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/incremental/runtime/src/index.ts b/incremental/runtime/src/index.ts index d25980d7d..09be4aeab 100644 --- a/incremental/runtime/src/index.ts +++ b/incremental/runtime/src/index.ts @@ -24,7 +24,8 @@ export { stateAnimator, } from "./animation/AnimatedState" export { - AnimationRange, + // TODO: We conflict with Arkoala AnimationRange + AnimationRange as BaseAnimationRange, ArrayAnimationRange, NumberAnimationRange, } from "./animation/AnimationRange" -- Gitee