Class Limiter

A limiter audio effector.

Placeholder class. Limiter is currently declared as an empty class (export class Limiter {}) — it does not extend Effector, and has no properties, methods, or constructor arguments of its own. It cannot be attached to a Channel or Master via addEffect()/attachEffect() yet, since those expect an Effector instance.

Example

import { Limiter } from "@fluex/fluexgl-dsp";

const limiter = new Limiter();

Constructor

new Limiter(): Limiter;

Takes no arguments. Uses the default (implicit) constructor.


Properties

This class has no public properties.


Methods

This class has no public methods.


Events

This class does not emit any events.

Getters and setters

This class does not define public getters or setters.