(
format: ExportFormat,
source: Uri,
defaultFileName?: string | undefined
)
| 37 | } |
| 38 | |
| 39 | async getTargetFile( |
| 40 | format: ExportFormat, |
| 41 | source: Uri, |
| 42 | defaultFileName?: string | undefined |
| 43 | ): Promise<Uri | undefined> { |
| 44 | let target = await new ExportDialog().showDialog(format, source, defaultFileName); |
| 45 | |
| 46 | return target; |
| 47 | } |
| 48 | } |
nothing calls this directly
no test coverage detected