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) • 349 B
TypeScript
import type { RangeValue } from "../../Types";
export interface ICoordinates {
x: number;
y: number;
}
export interface ICoordinates3d extends ICoordinates {
z: number;
}
export interface IRangedCoordinates {
x: RangeValue;
y: RangeValue;
}
export interface IRangedCoordinates3d extends IRangedCoordinates {
z: RangeValue;
}