tsparticles
Version:
Easily create highly customizable particle, confetti and fireworks 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.
16 lines (15 loc) • 387 B
TypeScript
/**
* @category Enums
*/
export declare const enum MoveDirection {
bottom = "bottom",
bottomLeft = "bottom-left",
bottomRight = "bottom-right",
left = "left",
none = "none",
right = "right",
top = "top",
topLeft = "top-left",
topRight = "top-right"
}
export declare type MoveDirectionAlt = "bottom-left" | "bottom-right" | "top-left" | "top-right";