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