UNPKG

node-audio-mixer

Version:

PCM audio mixer with customizable parameters

8 lines (7 loc) 236 B
import { type BitDepth } from '../../Types/AudioTypes'; type RangeValue = { min: number; max: number; }; export declare function getValueRange(bitDepth: BitDepth, isUnsigned?: boolean, isFloat?: boolean): RangeValue; export {};