tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
13 lines (12 loc) • 538 B
TypeScript
import type { IRotate } from "../../../Interfaces/Options/Particles/IRotate";
import type { IRotateAnimation } from "../../../Interfaces/Options/Particles/IRotateAnimation";
import { RotateDirection } from "../../../Enums/RotateDirection";
import type { RecursivePartial } from "../../../Types/RecursivePartial";
export declare class Rotate implements IRotate {
animation: IRotateAnimation;
direction: RotateDirection;
random: boolean;
value: number;
constructor();
load(data?: RecursivePartial<IRotate>): void;
}