Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Commit

Permalink
fix: jitsi track constructor types
Browse files Browse the repository at this point in the history
  • Loading branch information
sapkra committed Mar 8, 2022
1 parent ca0f8b5 commit d176df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/hand-crafted/modules/RTC/JitsiTrack.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { VideoType } from '../../service/RTC/VideoType';
import TraceablePeerConnection from './TraceablePeerConnection';

export default class JitsiTrack extends EventEmitter {
constructor( conference: JitsiConference, stream: unknown, track: unknown, streamInactiveHandler: unknown, trackMediaType: unknown, videoType: unknown ); // TODO:
constructor( conference: JitsiConference, stream: unknown, track: unknown, streamInactiveHandler: unknown, trackMediaType: MediaType, videoType: VideoType ); // TODO:
disposed: boolean;
getVideoType: () => VideoType;
getType: () => MediaType;
Expand Down

0 comments on commit d176df3

Please sign in to comment.