@tsparticles/plugin-emitters-shape-circle
Version:
tsParticles emitters shape circle plugin
6 lines (5 loc) • 352 B
TypeScript
import type { ICoordinates, IDimension } from "@tsparticles/engine";
import type { IEmitterShape, IEmitterShapeGenerator } from "@tsparticles/plugin-emitters";
export declare class EmittersCircleShapeGenerator implements IEmitterShapeGenerator {
generate(position: ICoordinates, size: IDimension, fill: boolean, options: unknown): IEmitterShape;
}