Skip to content

Commit e7b97d9

Browse files
committed
fix: add native.ts change
1 parent 32a561b commit e7b97d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package/src/native.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

122122
export type AVPlaybackStatusToSet = {
@@ -142,7 +142,6 @@ export type SoundOptions = {
142142
};
143143

144144
export 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;

0 commit comments

Comments
 (0)