pixeltone.js
Version:
An auditory creation tool that turns your images into sounds.
10 lines (9 loc) • 346 B
TypeScript
import { SerialRGBMapperOptions } from "../options/SerialRGBMapperOptions";
import { MappedFreqAmp } from "../types/MappedFreqAmp";
declare class PixelToFrequencyMapper {
constructor();
serialRGBMapper(options: SerialRGBMapperOptions): MappedFreqAmp;
private _mapFrequencies;
destroy(): void;
}
export { PixelToFrequencyMapper };