From 422e912432dc177f33c03ab6d69f0af5e1efa9fe Mon Sep 17 00:00:00 2001 From: Matt Perry Date: Wed, 16 Aug 2023 11:17:35 +0200 Subject: [PATCH] Removing unused files --- .../framer-motion/src/animation/animators/Animation.ts | 7 ------- .../src/animation/animators/AsyncAnimation.ts | 1 - .../framer-motion/src/animation/animators/SyncAnimation.ts | 3 --- 3 files changed, 11 deletions(-) delete mode 100644 packages/framer-motion/src/animation/animators/Animation.ts delete mode 100644 packages/framer-motion/src/animation/animators/AsyncAnimation.ts delete mode 100644 packages/framer-motion/src/animation/animators/SyncAnimation.ts 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 {}