app.extensionManager.dialog.confirm({
title: string, // ダイアログのタイトル
message: string, // 表示するメッセージ
type?: "default" | "overwrite" | "delete" | "dirtyClose" | "reinstall", // ダイアログのタイプ(オプション)
itemList?: string[], // 表示する項目のリスト(オプション)
hint?: string // 表示するヒントテキスト(オプション)
}).then((result: boolean | null) => {
// result は確認なら true、拒否なら false、キャンセルなら null
});