Skip to content

Commit

Permalink
fix(client): fixed incorrect audio event names (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarasx authored Nov 20, 2023
1 parent a023015 commit 195c660
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,8 @@ declare module "alt-client" {
public on(event: "streamEnded", callback: () => void): void;
public on(event: "streamPaused", callback: () => void): void;
public on(event: "streamReset", callback: () => void): void;
public on(event: "streamSeek ", callback: (time: number) => void): void;
public on(event: "volumeChange ", callback: (vol: number) => void): void;
public on(event: "streamSeek", callback: (time: number) => void): void;
public on(event: "volumeChange", callback: (vol: number) => void): void;
public on(event: "error", callback: (code: number, message: string) => void): void;

public deleteMeta(key: string): void;
Expand Down

0 comments on commit 195c660

Please sign in to comment.