fix: backend option format

This commit is contained in:
jialin
2025-11-04 18:07:14 +08:00
parent 4ca6a221e4
commit 7e5edd6387
5 changed files with 38 additions and 38 deletions
+6 -1
View File
@@ -299,8 +299,13 @@ export interface BackendGroupOption {
}
export interface BackendOption {
value: string;
label: string;
options: BackendGroupOption[];
title?: string;
default_backend_param: string[];
default_version: string;
isBuiltIn: boolean;
versions: { label: string; value: string; title?: string }[];
}
export interface AccessControlFormData {