Interface NoiseSynthOptions

interface NoiseSynthOptions {
    context: BaseContext;
    envelope: Omit<EnvelopeOptions, "context">;
    noise: Omit<NoiseOptions, "context">;
    volume: number;
}

Hierarchy

  • InstrumentOptions
    • NoiseSynthOptions

Properties

context: BaseContext
envelope: Omit<EnvelopeOptions, "context">
noise: Omit<NoiseOptions, "context">
volume: number