Skip to content

Commit

Permalink
fix: set enum values explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Apr 1, 2019
1 parent 3430cb7 commit bd50491
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/enums/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ export enum MultiViewerLayout {
}

export enum AudioMixOption {
Off,
On,
AudioFollowVideo
Off = 0,
On = 1,
AudioFollowVideo = 2
}

export enum AudioSourceType {
Expand Down

0 comments on commit bd50491

Please sign in to comment.