Skip to content

Commit

Permalink
fix: type error
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Jan 28, 2021
1 parent 07221f6 commit ff3bb26
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/common/Classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import type {
CaptureBrightnessLevelType,
DegradationPreference,
EncryptionMode,
ExperiencePoorReason,
ExperienceQualityType,
LastmileProbeResultState,
LighteningContrastLevel,
LogLevel,
Expand Down Expand Up @@ -1294,11 +1296,11 @@ export interface RemoteAudioStats {
/**
* Experience quality: #EXPERIENCE_QUALITY_TYPE
*/
qoeQuality: number;
qoeQuality: ExperienceQualityType;
/**
* The reason for poor experience quality: #EXPERIENCE_POOR_REASON
*/
qualityChangedReason: number;
qualityChangedReason: ExperiencePoorReason;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/common/Enums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ export enum CameraCaptureOutputPreference {
*/
Preview = 2,
/**
* 3: Capture Dimensions determined by user
* 3: Capture Dimensions determined by user.
*/
Manual = 3,
}
Expand Down Expand Up @@ -2642,7 +2642,7 @@ export enum VoiceBeautifierPreset {
/**
* TODO(DOC)
*/
SINGING_BEAUTIFIER = 0x01020100,
SingingBeautifier = 0x01020100,

/**
* A more vigorous voice.
Expand Down

0 comments on commit ff3bb26

Please sign in to comment.