7 行
138 B
TypeScript
7 行
138 B
TypeScript
|
|
export type CommonParamList = {
|
||
|
|
WebView: {
|
||
|
|
url: string; // 地址
|
||
|
|
title?: string; // 标题
|
||
|
|
}; // 通用的 webview 页面
|
||
|
|
};
|