diff --git a/src/components/Utils.ts b/src/components/Utils.ts index 790733f..888e651 100644 --- a/src/components/Utils.ts +++ b/src/components/Utils.ts @@ -523,8 +523,8 @@ export function AsepriteFlipBookKeyframe( } // Quick Animation -type Anim = AnimationProperties | number -type AnimWithSmartAnim = [SmartAnimation | Anim, ...Anim[]] +export type AnimationByType = AnimationProperties | number +export type AnimWithSmartAnim = [SmartAnimation | AnimationByType, ...AnimationByType[]] export function OffsetAnimation(...keyframes: AnimWithSmartAnim) { return new Animation(AnimType.OFFSET, ...keyframes)