UNPKG

170 BTypeScriptView Raw
1import type { IParticle } from "./IParticle";
2export interface IAttract {
3 particles: IParticle[];
4 finish?: boolean;
5 count?: number;
6 clicking?: boolean;
7}