@waveform-playlist/browser 7.0.0 → 7.1.1
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 +3 -3
- package/dist/index.js +237 -87
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3056 -2699
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -9
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
|
|
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
|
|