1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add media segment action settings

This commit is contained in:
Bill Thornton 2024-09-25 16:55:53 -04:00
parent c6b4d41535
commit 809dba510a
5 changed files with 68 additions and 4 deletions

View file

@ -0,0 +1,7 @@
/**
* Actions that are triggered for media segments.
*/
export enum MediaSegmentAction {
None = 'None',
Skip = 'Skip'
}