mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-09-11 18:04:38 +00:00
Enhance InstallMethod component: add operating system selection and version handling with new input structure (#426)
This commit is contained in:
parent
0c744ad274
commit
dc1b14dfd9
3 changed files with 138 additions and 81 deletions
|
@ -46,3 +46,13 @@ export type Category = {
|
|||
export type Metadata = {
|
||||
categories: Category[];
|
||||
};
|
||||
|
||||
export interface Version {
|
||||
name: string;
|
||||
slug: string;
|
||||
}
|
||||
|
||||
export interface OperatingSystem {
|
||||
name: string;
|
||||
versions: Version[];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue