2025-08-29 18:39:55 +08:00
|
|
|
export type CommonParamList = {
|
2025-09-01 16:49:47 +08:00
|
|
|
// 通用的 webview 页面
|
2025-08-29 18:39:55 +08:00
|
|
|
WebView: {
|
2025-09-01 16:49:47 +08:00
|
|
|
// 地址
|
|
|
|
|
url: string;
|
|
|
|
|
// 标题
|
|
|
|
|
title?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 扫一扫
|
|
|
|
|
Scan: undefined;
|
2025-08-29 18:39:55 +08:00
|
|
|
};
|