@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
21 lines (20 loc) • 745 B
TypeScript
/**
* creates a Synth
*
*
*/
import { TypedAudioNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { AudioBuilder } from '../../../core/audio/AudioBuilder';
import { AudioType } from '../../poly/registers/nodes/types/Audio';
declare class SynthAudioParamsConfig extends NodeParamsConfig {
/** @param The glide time between notes. */
portamento: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.FLOAT>;
}
export declare class SynthAudioNode extends TypedAudioNode<SynthAudioParamsConfig> {
paramsConfig: SynthAudioParamsConfig;
static type(): AudioType;
initializeNode(): void;
cook(inputContents: AudioBuilder[]): void;
}
export {};