expo-gliph-player 1.3.10 → 1.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types.ts +11 -17
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -170,26 +170,20 @@ export enum IOSCategoryOptions {
|
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
export declare enum AndroidAudioContentType {
|
|
173
|
-
Unknown = '
|
|
174
|
-
Speech = '
|
|
175
|
-
Music = '
|
|
176
|
-
Movie = '
|
|
177
|
-
Sonification = '
|
|
173
|
+
Unknown = 'music',
|
|
174
|
+
Speech = 'speech',
|
|
175
|
+
Music = 'music',
|
|
176
|
+
Movie = 'movie',
|
|
177
|
+
Sonification = 'sonification'
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
export declare enum AndroidAudioUsage {
|
|
181
|
-
Unknown = '
|
|
182
|
-
Media = '
|
|
183
|
-
VoiceCommunication = '
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
NotificationRingtone = '6',
|
|
188
|
-
NotificationEvent = '10',
|
|
189
|
-
AssistanceAccessibility = '11',
|
|
190
|
-
AssistanceNavigationGuidance = '12',
|
|
191
|
-
AssistanceSonification = '13',
|
|
192
|
-
Game = '14'
|
|
181
|
+
Unknown = 'media',
|
|
182
|
+
Media = 'media',
|
|
183
|
+
VoiceCommunication = 'voiceCommunication',
|
|
184
|
+
Alarm = 'alarm',
|
|
185
|
+
Notification = 'notification',
|
|
186
|
+
Game = 'game'
|
|
193
187
|
}
|
|
194
188
|
|
|
195
189
|
// ─── Options ─────────────────────────────────────────────────────────────────
|