Interface PolySynthOptions<Voice>

interface PolySynthOptions<Voice> {
    context: BaseContext;
    maxPolyphony: number;
    options: RecursivePartial<OmitMonophonicOptions<VoiceOptions<Voice>>>;
    voice: VoiceConstructor<Voice>;
    volume: number;
}

Type Parameters

  • Voice

Hierarchy

  • InstrumentOptions
    • PolySynthOptions

Properties

context: BaseContext
maxPolyphony: number
options: RecursivePartial<OmitMonophonicOptions<VoiceOptions<Voice>>>
voice: VoiceConstructor<Voice>
volume: number