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입니다
});