UNPKG

react-native-audiowaveform

Version:

Audio Waveform visualization and sound renderization for React Native

23 lines (18 loc) 376 B
// @flow /* eslint-disable no-unused-vars */ type NativeWaveType = { componentID: number } & WaveObjectPropsType; type WaveObjectPropsType = { autoPlay: boolean, play: boolean, source: number, stop: boolean, style: ?number, waveFormStyle: ?WaveformStyleType, onPress: ?Function }; type WaveformStyleType = { scrubColor: string, waveColor: string };