UNPKG

@tsparticles/plugin-emitters

Version:

tsParticles emitters plugin

6 lines (5 loc) 295 B
import type { ICoordinates, IDimension } from "@tsparticles/engine"; import type { IEmitterShape } from "./IEmitterShape.js"; export interface IEmitterShapeGenerator<TOptions = unknown> { generate(position: ICoordinates, size: IDimension, fill: boolean, options: TOptions): IEmitterShape; }