@tsparticles/interaction-external-slow
Version:
tsParticles slow external interaction
17 lines (16 loc) • 464 B
TypeScript
import type { Container } from "@tsparticles/engine";
import type { ISlow } from "./Options/Interfaces/ISlow.js";
import type { Slow } from "./Options/Classes/Slow.js";
import type { SlowOptions } from "./Options/Classes/SlowOptions.js";
export interface ISlowMode {
slow: ISlow;
}
export interface SlowMode {
slow?: Slow;
}
export type SlowContainer = Container & {
actualOptions: SlowOptions;
retina: {
slowModeRadius?: number;
};
};