UNPKG

343 BTypeScriptView Raw
1import type { IDistance } from "./IDistance";
2export interface IParticleRetinaProps {
3 attractDistance?: number;
4 linksDistance?: number;
5 linksWidth?: number;
6 maxDistance: Partial<IDistance>;
7 maxSpeed?: number;
8 moveDrift?: number;
9 moveSpeed?: number;
10 sizeAnimationSpeed?: number;
11 spinAcceleration?: number;
12}