UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

14 lines (13 loc) 502 B
import { AbstractNamedAudioNode } from "../abstractAudioNode.js"; import type { AudioEngineV2 } from "../audioEngineV2.js"; /** @internal */ export declare abstract class _AbstractAudioSubNode extends AbstractNamedAudioNode { /** @internal */ protected constructor(name: string, engine: AudioEngineV2); /** @internal */ connect(node: _AbstractAudioSubNode): void; /** @internal */ disconnect(node: _AbstractAudioSubNode): void; /** @internal */ disconnectAll(): void; }