import type { Container, ICoordinates, IDimension } from "@tsparticles/engine"; import type { IEmitterShape } from "./IEmitterShape.js"; export interface IEmitterShapeGenerator { generate(container: Container, position: ICoordinates, size: IDimension, fill: boolean, options: TOptions): IEmitterShape; }