expo-gliph-player 1.3.6 → 1.3.8
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/lib/typescript/src/types.d.ts +17 -17
- package/package.json +1 -1
|
@@ -153,25 +153,25 @@ export declare enum IOSCategoryOptions {
|
|
|
153
153
|
DefaultToSpeaker = "defaultToSpeaker"
|
|
154
154
|
}
|
|
155
155
|
export declare enum AndroidAudioContentType {
|
|
156
|
-
Unknown = 0,
|
|
157
|
-
Speech = 1,
|
|
158
|
-
Music = 2,
|
|
159
|
-
Movie = 3,
|
|
160
|
-
Sonification = 4
|
|
156
|
+
Unknown = '0',
|
|
157
|
+
Speech = '1',
|
|
158
|
+
Music = '2',
|
|
159
|
+
Movie = '3',
|
|
160
|
+
Sonification = '4'
|
|
161
161
|
}
|
|
162
162
|
export declare enum AndroidAudioUsage {
|
|
163
|
-
Unknown = 0,
|
|
164
|
-
Media = 1,
|
|
165
|
-
VoiceCommunication = 2,
|
|
166
|
-
VoiceCommunicationSignalling = 3,
|
|
167
|
-
Alarm = 4,
|
|
168
|
-
Notification = 5,
|
|
169
|
-
NotificationRingtone = 6,
|
|
170
|
-
NotificationEvent = 10,
|
|
171
|
-
AssistanceAccessibility = 11,
|
|
172
|
-
AssistanceNavigationGuidance = 12,
|
|
173
|
-
AssistanceSonification = 13,
|
|
174
|
-
Game = 14
|
|
163
|
+
Unknown = '0',
|
|
164
|
+
Media = '1',
|
|
165
|
+
VoiceCommunication = '2',
|
|
166
|
+
VoiceCommunicationSignalling = '3',
|
|
167
|
+
Alarm = '4',
|
|
168
|
+
Notification = '5',
|
|
169
|
+
NotificationRingtone = '6',
|
|
170
|
+
NotificationEvent = '10',
|
|
171
|
+
AssistanceAccessibility = '11',
|
|
172
|
+
AssistanceNavigationGuidance = '12',
|
|
173
|
+
AssistanceSonification = '13',
|
|
174
|
+
Game = '14'
|
|
175
175
|
}
|
|
176
176
|
export interface PlayerOptions {
|
|
177
177
|
/** Minimum seconds to buffer before playback starts (Android) */
|
package/package.json
CHANGED