Variable soundEffectsConst
soundEffects: Record<
string,
{
effectClass: | (
new (
context: BaseAudioContext,
options?: BiquadFilterOptions,
) => BiquadFilterNode
)
| (
new (
context: BaseAudioContext,
options?: ConvolverOptions,
) => ConvolverNode
);
label: string;
},
> = ...
An enumeration of sound effects which can be applied to Sound instances.