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) • 323 B
TypeScript
import type { ISizeAnimation } from "./ISizeAnimation";
import type { IOptionLoader } from "../IOptionLoader";
import { IRandomSize } from "./IRandomSize";
export interface ISize extends IOptionLoader<ISize> {
anim: ISizeAnimation;
animation: ISizeAnimation;
random: boolean | IRandomSize;
value: number;
}