mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-13 14:08:31 -06:00
at over 3 seconds of playback, this will seek to the beginning of the track else we will skip to the previous track if there is one
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
export const UPDATE_INTERVAL: number = 50 // 8 milliseconds
|
|
|
|
/**
|
|
* Indicates the seconds the progress position must be
|
|
* less than in order to do a skip to the previous
|
|
*/
|
|
export const SKIP_TO_PREVIOUS_THRESHOLD: number = 4
|