IAudioEngineOptions.d.ts 387 B

1234567891011121314
  1. /**
  2. * Interface used to define options for the Audio Engine
  3. * @since 5.0.0
  4. */
  5. export interface IAudioEngineOptions {
  6. /**
  7. * Specifies an existing Audio Context for the audio engine
  8. */
  9. audioContext?: AudioContext;
  10. /**
  11. * Specifies a destination node for the audio engine
  12. */
  13. audioDestination?: AudioDestinationNode | MediaStreamAudioDestinationNode;
  14. }