UNPKG

tsparticles

Version:

Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.

9 lines (8 loc) 352 B
import type { DestroyType, StartValueType } from "../../../../Enums/Types"; import type { IAnimation } from "../../IAnimation"; export interface IOpacityAnimation extends IAnimation { opacity_min: number; destroy: DestroyType | keyof typeof DestroyType; minimumValue: number; startValue: StartValueType | keyof typeof StartValueType; }