@waveform-playlist/browser 7.0.0 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -871,16 +871,16 @@ export declare const PauseButton: default_2.FC<{
871
871
  * PeakData - result of peak extraction
872
872
  */
873
873
  declare interface PeakData {
874
- /** Number of peaks extracted */
874
+ /** Number of peak pairs extracted */
875
875
  length: number;
876
- /** Array of peak data for each channel */
876
+ /** Array of peak data for each channel (interleaved min/max) */
877
877
  data: Peaks[];
878
878
  /** Bit depth of peak data */
879
879
  bits: Bits;
880
880
  }
881
881
 
882
882
  /**
883
- * Peaks type - represents a typed array of peak data
883
+ * Peaks type - represents a typed array of interleaved min/max peak data
884
884
  */
885
885
  declare type Peaks = Int8Array | Int16Array;
886
886