diff --git a/demo/content.ts b/demo/content.ts index ed9003d..98126bf 100644 --- a/demo/content.ts +++ b/demo/content.ts @@ -30,7 +30,7 @@ import {BlobOptions} from "../public/blobs"; import {interpolateBetween, interpolateBetweenSmooth} from "../internal/animate/interpolate"; import {divide} from "../internal/animate/prepare"; import {statefulAnimationGenerator} from "../internal/animate/state"; -import {CanvasCustomKeyframe, CanvasKeyframe, canvasPath, wigglePreset} from "../public/animate"; +import {CanvasKeyframe, canvasPath, wigglePreset} from "../public/animate"; const makePoly = (pointCount: number, radius: number, center: Coord): Point[] => { const angle = (2 * Math.PI) / pointCount; diff --git a/public/animate.ts b/public/animate.ts index ad06450..31bf2e6 100644 --- a/public/animate.ts +++ b/public/animate.ts @@ -13,7 +13,6 @@ import {BlobOptions, CanvasOptions} from "./blobs"; import {noise} from "../internal/rand"; import {interpolateBetween} from "../internal/animate/interpolate"; import {prepare} from "../internal/animate/prepare"; -import {timingFunctions} from "../internal/animate/timing"; interface Keyframe { // Duration of the keyframe animation in milliseconds.