Initial commit
This commit is contained in:
11
src/types/module.ts
Normal file
11
src/types/module.ts
Normal 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'
|
||||
Reference in New Issue
Block a user