tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
10 lines (9 loc) • 351 B
TypeScript
import type { IRotateAnimation } from "./IRotateAnimation";
import type { IOptionLoader } from "../IOptionLoader";
import type { RotateDirection } from "../../../Enums/RotateDirection";
export interface IRotate extends IOptionLoader<IRotate> {
animation: IRotateAnimation;
random: boolean;
value: number;
direction: RotateDirection;
}