tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
18 lines (17 loc) • 541 B
TypeScript
import type { IBubble } from "./IBubble";
import type { IConnect } from "./IConnect";
import type { IGrab } from "./IGrab";
import type { IPush } from "./IPush";
import type { IRemove } from "./IRemove";
import type { IRepulse } from "./IRepulse";
import type { ISlow } from "./ISlow";
import type { IOptionLoader } from "../../IOptionLoader";
export interface IModes extends IOptionLoader<IModes> {
bubble: IBubble;
connect: IConnect;
grab: IGrab;
push: IPush;
remove: IRemove;
repulse: IRepulse;
slow: ISlow;
}