diff --git a/packages/framer-motion/src/animation/animators/Animation.ts b/packages/framer-motion/src/animation/animators/Animation.ts deleted file mode 100644 index 1286dad2d9..0000000000 --- a/packages/framer-motion/src/animation/animators/Animation.ts +++ /dev/null @@ -1,7 +0,0 @@ -export class Animation { - startTime: number | null = null - - holdTime: number | null = null - - currentTime: number | null = null -} diff --git a/packages/framer-motion/src/animation/animators/AsyncAnimation.ts b/packages/framer-motion/src/animation/animators/AsyncAnimation.ts deleted file mode 100644 index a2da71be90..0000000000 --- a/packages/framer-motion/src/animation/animators/AsyncAnimation.ts +++ /dev/null @@ -1 +0,0 @@ -export class AsyncAnimation extends Animation {} diff --git a/packages/framer-motion/src/animation/animators/SyncAnimation.ts b/packages/framer-motion/src/animation/animators/SyncAnimation.ts deleted file mode 100644 index 61016a5386..0000000000 --- a/packages/framer-motion/src/animation/animators/SyncAnimation.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { Animation } from "./Animation" - -export class SyncAnimation extends Animation {}