UNPKG

react-native-audiowaveform

Version:

Audio Waveform visualization and sound renderization for React Native

25 lines (20 loc) 422 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, onFinishPlay: ?Function, earpiece: boolean }; type WaveformStyleType = { scrubColor: string, waveColor: string };