(title, inputs, help)
| 929 | } |
| 930 | |
| 931 | async multiPrompt(title, inputs, help) { |
| 932 | const values = await multiPrompt(title, inputs, help); |
| 933 | return values; |
| 934 | } |
| 935 | |
| 936 | async fileBrowser(mode, info, openLast) { |
| 937 | const res = await FileBrowser(mode, info, openLast); |
nothing calls this directly
no test coverage detected