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