Skip to content

Commit

Permalink
use readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Jan 8, 2025
1 parent 8718b7f commit e705cf5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/adb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,12 @@ export class ADB implements ADBOptions {
getEmuVersionInfo = emuMethods.getEmuVersionInfo;
getEmuImageProperties = emuMethods.getEmuImageProperties;
checkAvdExist = emuMethods.checkAvdExist;
POWER_AC_STATES = emuConstants.POWER_AC_STATES;
GSM_CALL_ACTIONS = emuConstants.GSM_CALL_ACTIONS;
GSM_VOICE_STATES = emuConstants.GSM_VOICE_STATES;
GSM_SIGNAL_STRENGTHS = emuConstants.GSM_SIGNAL_STRENGTHS;
NETWORK_SPEED = emuConstants.NETWORK_SPEED;
SENSORS = emuConstants.SENSORS;
readonly POWER_AC_STATES = emuConstants.POWER_AC_STATES;
readonly GSM_CALL_ACTIONS = emuConstants.GSM_CALL_ACTIONS;
readonly GSM_VOICE_STATES = emuConstants.GSM_VOICE_STATES;
readonly GSM_SIGNAL_STRENGTHS = emuConstants.GSM_SIGNAL_STRENGTHS;
readonly NETWORK_SPEED = emuConstants.NETWORK_SPEED;
readonly SENSORS = emuConstants.SENSORS;

getDeviceProperty = deviceSettingsCommands.getDeviceProperty;
setDeviceProperty = deviceSettingsCommands.setDeviceProperty;
Expand Down

0 comments on commit e705cf5

Please sign in to comment.