UNPKG

388 BTypeScriptView Raw
1import type { Container } from "./Container";
2import type { Particle } from "./Particle";
3export declare class Retina {
4 private readonly container;
5 attractDistance: number;
6 maxSpeed: number;
7 pixelRatio: number;
8 reduceFactor: number;
9 sizeAnimationSpeed: number;
10 constructor(container: Container);
11 init(): void;
12 initParticle(particle: Particle): void;
13}