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

Refactor asyncRouteType to appType

This commit is contained in:
Bill Thornton 2025-01-23 16:09:49 -05:00
parent 0d9b2cf276
commit 93ef17a132
5 changed files with 38 additions and 39 deletions

8
src/constants/appType.ts Normal file
View file

@ -0,0 +1,8 @@
/**
* App types represented in src/apps.
*/
export enum AppType {
Dashboard = 'dashboard',
Experimental = 'experimental',
Stable = 'stable'
}