import type { Container, IOptions, Options } from "tsparticles-engine"; import type { IMotion } from "./Options/Interfaces/IMotion"; import type { Motion } from "./Options/Classes/Motion"; export type IMotionOptions = IOptions & { motion?: IMotion; }; export type MotionOptions = Options & { motion?: Motion; }; export type MotionContainer = Container & { actualOptions: MotionOptions; };