🎨 增加 Go 后端
This commit is contained in:
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
// 定义表示单个选项的接口
|
||||
interface SelectOption {
|
||||
label: string;
|
||||
value: string;
|
||||
}
|
||||
|
||||
// 定义表示整个 JSON 对象的接口
|
||||
interface WebSiteConfig {
|
||||
logoLeftText: string;
|
||||
logoRightText: string;
|
||||
defaultSelectOptions: SelectOption[];
|
||||
}
|
||||
Reference in New Issue
Block a user