UNPKG

react-native-audio-analyzer

Version:

A powerful React Native library for audio analysis, waveform visualization, and amplitude data extraction. Create stunning audio visualizations with high-performance native C++ implementation.

10 lines (8 loc) 244 B
import type { HybridObject } from 'react-native-nitro-modules'; export interface FileSystem extends HybridObject<{ ios: 'swift'; android: 'kotlin' }> { /** * Downloads and caches the file. */ load(path: string): Promise<string>; }