Skip to content

Commit 4c6244a

Browse files
committed
Fix auxillary typo in StaticIconName
1 parent 88dd3a5 commit 4c6244a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

lib/js/src/manager/file/enums/StaticIconName.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,22 @@ class StaticIconName extends Enum {
122122
/**
123123
* Icon Name auxillary audio
124124
* Gets the enum value for AUXILLARY_AUDIO
125+
* @deprecated since version 1.3. Use AUXILIARY_AUDIO instead.
125126
* @returns {String} - The enum value.
126127
*/
127128
static get AUXILLARY_AUDIO () {
128129
return StaticIconName._MAP.AUXILLARY_AUDIO;
129130
}
130131

132+
/**
133+
* Icon Name auxiliary audio
134+
* Gets the enum value for AUXILIARY_AUDIO
135+
* @returns {String} - The enum value.
136+
*/
137+
static get AUXILIARY_AUDIO () {
138+
return StaticIconName._MAP.AUXILIARY_AUDIO;
139+
}
140+
131141
/**
132142
* Icon Name back / return
133143
* Gets the enum value for BACK
@@ -1659,6 +1669,7 @@ StaticIconName._MAP = Object.freeze({
16591669
'AUDIOBOOK_EPISODE': '0x83',
16601670
'AUDIOBOOK_NARRATOR': '0x82',
16611671
'AUXILLARY_AUDIO': '0x45',
1672+
'AUXILIARY_AUDIO': '0x45',
16621673
'BACK': '0x86',
16631674
'BATTERY_CAPACITY_0_OF_5': '0xF7',
16641675
'BATTERY_CAPACITY_1_OF_5': '0xF8',

0 commit comments

Comments
 (0)