@waveform-playlist/browser 5.0.0-alpha.1 → 5.0.0-alpha.2
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 +5 -0
- package/dist/index.js +113 -113
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1907 -1896
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -660,6 +660,11 @@ declare class TonePlayout {
|
|
|
660
660
|
private gainToDb;
|
|
661
661
|
init(): Promise<void>;
|
|
662
662
|
addTrack(trackOptions: ToneTrackOptions): ToneTrack;
|
|
663
|
+
/**
|
|
664
|
+
* Apply solo muting after all tracks have been added.
|
|
665
|
+
* Call this after adding all tracks to ensure solo logic is applied correctly.
|
|
666
|
+
*/
|
|
667
|
+
applyInitialSoloState(): void;
|
|
663
668
|
removeTrack(trackId: string): void;
|
|
664
669
|
getTrack(trackId: string): ToneTrack | undefined;
|
|
665
670
|
play(when?: number, offset?: number, duration?: number): void;
|