interface IEmitterShape {
    init(): Promise<void>;
    randomPosition(): null | IRandomPositionData;
    resize(position, size): void;
}

Implemented by

Methods