Skip to content

Commit

Permalink
janus.d.ts: fix typo and update PluginCreateAnswerParam to use tracks (
Browse files Browse the repository at this point in the history
…#3241)

Co-authored-by: Aymeric Moizard <aymeric@veeting.com>
  • Loading branch information
veeting and Aymeric Moizard committed Jul 12, 2023
1 parent 4f9b524 commit 9096017
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions npm/janus.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ declare namespace JanusJS {
}

interface OfferParams {
tracks?: TrackOptions[];
tracks?: TrackOption[];
trickle?: boolean;
iceRestart?: boolean;
success?: (jsep: JSEP) => void;
Expand Down Expand Up @@ -253,7 +253,10 @@ declare namespace JanusJS {

type PluginCreateAnswerParam = {
jsep: JSEP;
media: { audioSend: any, videoSend: any };
tracks?: TrackOption[];

/** @deprecated use tracks instead */
media?: { audioSend: any, videoSend: any };
success?: (data: JSEP) => void;
error?: (error: string) => void;
}
Expand Down

0 comments on commit 9096017

Please sign in to comment.