File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -114,9 +114,9 @@ export type PlaybackStatus = {
114114 isLooping : boolean ;
115115 isMuted : boolean ;
116116 isPlaying : boolean ;
117+ isSeeking : boolean ;
117118 positionMillis : number ;
118119 shouldPlay : boolean ;
119- isSeeking : boolean ;
120120} ;
121121
122122export type AVPlaybackStatusToSet = {
@@ -142,7 +142,6 @@ export type SoundOptions = {
142142} ;
143143
144144export type SoundReturnType = {
145- paused ?: boolean ;
146145 testID : string ;
147146 getDuration ?: ( ) => number ;
148147 isPlaying ?: ( ) => boolean ;
@@ -157,6 +156,7 @@ export type SoundReturnType = {
157156 onSeek ?: ( seekResponse : VideoSeekResponse ) => void ;
158157 pause ?: ( ) => void ;
159158 pauseAsync ?: ( ) => void ;
159+ paused ?: boolean ;
160160 play ?: ( ) => void ;
161161 playAsync ?: ( ) => void ;
162162 rate ?: number ;
You can’t perform that action at this time.
0 commit comments