Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StereoPannerNode

The pan property takes a unitless value between -1 (full left pan) and 1 (full right pan). This interface was introduced as a much simpler way to apply a simple panning effect than having to use a full PannerNode.

interface StereoPannerNode extends AudioNode {
readonly pan: AudioParam;
}
var StereoPannerNode: {
prototype: StereoPannerNode;
}
;

§Extends

§Properties

§
readonly pan: AudioParam
[src]