加入服务器的配置设置,可以设置服务器的url+port

This commit is contained in:
2026-03-14 14:10:29 +08:00
parent 0709c07bec
commit 83ce361404
5 changed files with 94 additions and 8 deletions

View File

@@ -26,4 +26,9 @@ export interface WalletmanAppState {
/* Proxy 状态 */
proxyStatus: 'idle' | 'connecting' | 'connected' | 'disconnected' | 'error';
proxyError?: string;
/* Server 设置 */
showServerSettings: boolean;
settingsHost: string;
settingsPort: string;
}