feat(ui): list plugins

This commit is contained in:
Junyan Qin
2025-07-13 22:03:47 +08:00
parent 65814a4644
commit 4380041c7f
5 changed files with 79 additions and 30 deletions
+15
View File
@@ -3,3 +3,18 @@ export interface I18nLabel {
zh_Hans: string;
ja_JP?: string;
}
export interface ComponentManifest {
apiVersion: string;
kind: string;
metadata: {
name: string;
label: I18nLabel;
description?: I18nLabel;
icon?: string;
repository?: string;
version?: string;
author?: string;
};
spec: object;
}