@tsparticles/updater-rotate
Version:
tsParticles particles rotate updater
11 lines (10 loc) • 439 B
TypeScript
import { type IOptionLoader, type RangeValue, type RecursivePartial } from "@tsparticles/engine";
import type { IRotateAnimation } from "../Interfaces/IRotateAnimation.js";
export declare class RotateAnimation implements IRotateAnimation, IOptionLoader<IRotateAnimation> {
decay: RangeValue;
enable: boolean;
speed: RangeValue;
sync: boolean;
constructor();
load(data?: RecursivePartial<IRotateAnimation>): void;
}