( captureChoice: ICaptureChoice, originLeaf: WorkspaceLeaf | null, )
| 291 | } |
| 292 | |
| 293 | private async onChooseCaptureType( |
| 294 | captureChoice: ICaptureChoice, |
| 295 | originLeaf: WorkspaceLeaf | null, |
| 296 | ) { |
| 297 | await new CaptureChoiceEngine( |
| 298 | this.app, |
| 299 | this.plugin, |
| 300 | captureChoice, |
| 301 | this, |
| 302 | originLeaf, |
| 303 | ).run(); |
| 304 | } |
| 305 | |
| 306 | private async onChooseMacroType( |
| 307 | macroChoice: IMacroChoice, |
no test coverage detected