更新types

This commit is contained in:
fofolee
2024-03-01 09:30:33 +08:00
parent 209da5e869
commit fbae2864b2

View File

@@ -157,11 +157,13 @@ interface quickcommandApi {
* @param message 提示的内容
* @param title 提示的标题
* @param html 内容是支持html默认 false
* @param width 确认框宽度,默认 450
*/
showConfirmBox(
message?: string,
title?: string,
isHtml?: boolean
isHtml?: boolean,
width?: number
): Promise<boolean>;
/**