mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Skip skipping if skip is short
This commit is contained in:
parent
9aeb64e347
commit
7c4962de80
2 changed files with 22 additions and 3 deletions
8
src/constants/time.ts
Normal file
8
src/constants/time.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
/** The number of ticks per millisecond */
|
||||
export const TICKS_PER_MILLISECOND = 10_000;
|
||||
|
||||
/** The number of ticks per second */
|
||||
export const TICKS_PER_SECOND = 1_000 * TICKS_PER_MILLISECOND;
|
||||
|
||||
/** The number of ticks per minute */
|
||||
export const TICKS_PER_MINUTE = 60 * TICKS_PER_SECOND;
|
Loading…
Add table
Add a link
Reference in a new issue