@waveform-playlist/browser 9.4.0 → 9.5.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 +4 -2
- package/dist/index.js +92 -92
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3535 -3487
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -1189,7 +1189,8 @@ export declare interface PlaylistVisualizationProps {
|
|
|
1189
1189
|
trackId: string;
|
|
1190
1190
|
startSample: number;
|
|
1191
1191
|
durationSamples: number;
|
|
1192
|
-
peaks: Int8Array | Int16Array;
|
|
1192
|
+
peaks: (Int8Array | Int16Array)[];
|
|
1193
|
+
bits: 8 | 16;
|
|
1193
1194
|
};
|
|
1194
1195
|
}
|
|
1195
1196
|
|
|
@@ -2374,7 +2375,8 @@ export declare interface WaveformProps {
|
|
|
2374
2375
|
trackId: string;
|
|
2375
2376
|
startSample: number;
|
|
2376
2377
|
durationSamples: number;
|
|
2377
|
-
peaks: Int8Array | Int16Array;
|
|
2378
|
+
peaks: (Int8Array | Int16Array)[];
|
|
2379
|
+
bits: 8 | 16;
|
|
2378
2380
|
};
|
|
2379
2381
|
}
|
|
2380
2382
|
|