@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
23 lines • 448 B
TypeScript
export class SoundEmitterChannel {
/**
* Unique name identifying the channel
* @type {string}
*/
id: string;
/**
* Output to which all sound should be attached to
* @type {GainNode}
*/
sink: GainNode;
/**
*
* @param {number} v
*/
set volume(arg: number);
/**
*
* @return {number}
*/
get volume(): number;
}
//# sourceMappingURL=SoundEmitterChannel.d.ts.map