Initial commit

This commit is contained in:
root
2025-12-21 09:53:53 -05:00
committed by Sebastian Krupinski
commit 566f8f9e91
17 changed files with 2783 additions and 0 deletions

11
src/types/module.ts Normal file
View File

@@ -0,0 +1,11 @@
export interface Module {
handle: string
label: string
author: string
description: string
version: string
installed: boolean
enabled: boolean
}
export type ModuleAction = 'install' | 'uninstall' | 'enable' | 'disable' | 'upgrade'