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

ConstantSourceNode

interface ConstantSourceNode extends AudioScheduledSourceNode {
readonly offset: AudioParam;
addEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(
type: K,
listener: (this: ConstantSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void;
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void;
removeEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(
type: K,
listener: (this: ConstantSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void;
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void;
}
var ConstantSourceNode: {
prototype: ConstantSourceNode;
}
;

§Extends

§Properties

§
readonly offset: AudioParam
[src]

§Methods

§
addEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(
type: K,
listener: (this: ConstantSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
removeEventListener<K extends keyof AudioScheduledSourceNodeEventMap>(
type: K,
listener: (this: ConstantSourceNode, ev: AudioScheduledSourceNodeEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
[src]
§
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void
[src]