Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tienifr committed Feb 20, 2024
1 parent 178e1f6 commit 372b082
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/VideoPlayer/shouldReplayVideo.android.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {AVPlaybackStatusSuccess} from 'expo-av';
import type {AVPlaybackStatusSuccess} from 'expo-av';

/**
* Whether to replay the video when users press play button
Expand Down
2 changes: 1 addition & 1 deletion src/components/VideoPlayer/shouldReplayVideo.ios.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {AVPlaybackStatusSuccess} from 'expo-av';
import type {AVPlaybackStatusSuccess} from 'expo-av';

/**
* Whether to replay the video when users press play button
Expand Down
4 changes: 2 additions & 2 deletions src/components/VideoPlayer/shouldReplayVideo.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {AVPlaybackStatusSuccess} from 'expo-av';
import type {AVPlaybackStatusSuccess} from 'expo-av';

/**
* Whether to replay the video when users press play button
*/
// eslint-disable-next-line no-unused-vars
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export default function shouldReplayVideo(e: AVPlaybackStatusSuccess, isPlaying: boolean, duration: number, position: number): boolean {
return false;
}

0 comments on commit 372b082

Please sign in to comment.