whois/frontend/types/config.d.ts
2024-04-07 11:08:05 +08:00

13 lines
269 B
TypeScript

// 定义表示单个选项的接口
interface SelectOption {
label: string;
value: string;
}
// 定义表示整个 JSON 对象的接口
interface WebSiteConfig {
logoLeftText: string;
logoRightText: string;
defaultSelectOptions: SelectOption[];
}