( app: App, options: TextInputModalOptions )
| 138 | * Utility function to show text input modal |
| 139 | */ |
| 140 | export async function showTextInputModal( |
| 141 | app: App, |
| 142 | options: TextInputModalOptions |
| 143 | ): Promise<string | null> { |
| 144 | const modal = new TextInputModal(app, options); |
| 145 | return modal.show(); |
| 146 | } |
no test coverage detected