chore: enforce uppercase naming in Repository enum

This commit is contained in:
XlebyllleK
2025-01-11 13:55:29 +02:00
committed by GitHub
parent a039720a71
commit 2bf2039807

View File

@@ -1,10 +1,10 @@
// Type alias for repository categories // Type alias for repository categories
export enum Repository { export enum Repository {
All = 'all', ALL = 'all',
Core = 'core', CORE = 'core',
Extra = 'extra', EXTRA = 'extra',
Community = 'community', COMMUNITY = 'community',
Multilib = 'multilib' MULTILIB = 'multilib'
} }
// Type alias for UI themes // Type alias for UI themes