Skip to content

Commit

Permalink
v1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
afkcodes committed Jun 21, 2024
1 parent 6f100f4 commit 4d9cb76
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3353,6 +3353,7 @@ declare class AudioX {
private eqStatus;
private isEqEnabled;
private eqInstance;
private showNotificationsActions;
constructor();
init(initProps: AudioInit): Promise<void>;
addMedia(mediaTrack: MediaTrack): Promise<void>;
Expand All @@ -3366,6 +3367,7 @@ declare class AudioX {
setPlaybackRate(playbackRate: PlaybackRate): void;
mute(): void;
seek(time: number): void;
seekBy(time: number): void;
destroy(): Promise<void>;
subscribe(eventName: string, callback: (data: any) => void, state?: any): () => void;
addEventListener(event: keyof HTMLMediaElementEventMap, callback: (data: any) => void): void;
Expand All @@ -3381,6 +3383,7 @@ declare class AudioX {
playNext(): void;
playPrevious(): void;
clearQueue(): void;
addToQueue(mediaTracks: MediaTrack | MediaTrack[]): void;
removeFromQueue(mediaTrack: MediaTrack): void;
getQueue(): MediaTrack[];
get id(): string | null;
Expand Down
4 changes: 2 additions & 2 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "audio_x",
"version": "1.0.8",
"version": "1.0.9",
"description": "The audio player for the gen-x",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 4d9cb76

Please sign in to comment.