( app: App, options: ConfirmationModalOptions )
| 166 | * Utility function to show confirmation modal |
| 167 | */ |
| 168 | export async function showConfirmationModal( |
| 169 | app: App, |
| 170 | options: ConfirmationModalOptions |
| 171 | ): Promise<boolean> { |
| 172 | const modal = new ConfirmationModal(app, options); |
| 173 | return modal.show(); |
| 174 | } |
no test coverage detected