[Types] Move enum to types file (#3416)

This commit is contained in:
Christian Byrne
2025-04-12 23:11:41 +08:00
committed by GitHub
parent e4a5355f58
commit d098d6ae4e
2 changed files with 6 additions and 5 deletions

View File

@@ -10,6 +10,11 @@ export type PackField = keyof RegistryPack | null
export const IsInstallingKey: InjectionKey<Ref<boolean>> =
Symbol('isInstalling')
export enum ManagerWsQueueStatus {
DONE = 'done',
IN_PROGRESS = 'in_progress'
}
export enum ManagerTab {
All = 'all',
Installed = 'installed',