UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

7 lines (5 loc) 273 B
import {NodeParamsConfig} from '../utils/params/ParamsConfig'; import {TypedAudioNode} from './_Base'; export abstract class BaseAnalyserAudioNode<K extends NodeParamsConfig> extends TypedAudioNode<K> { abstract getAnalyserValue(): Float32Array | number[] | undefined; }