UNPKG

vue-rewards

Version:

Vue-rewards lets you add micro-interactions to your app, and rewards users with the rain of confetti, emoji or balloons in seconds.

17 lines (16 loc) 341 B
export type ParticlePhysics = { x: number; y: number; z: number; wobble: number; velocity: number; angle2D: number; angle3D: number; tiltAngle: number; differentiator: number; }; export interface Particle { element: HTMLSpanElement; physics: ParticlePhysics; } export type Particles = Particle[];