(summary, message)
| 132 | } |
| 133 | |
| 134 | export function infoToast(summary, message) { |
| 135 | try { |
| 136 | app.extensionManager.toast.add({ |
| 137 | severity: 'info', |
| 138 | summary: summary, |
| 139 | detail: message, |
| 140 | life: 3000 |
| 141 | }) |
| 142 | } |
| 143 | catch { |
| 144 | // do nothing |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | |
| 149 | export async function customPrompt(title, message) { |
no outgoing calls
no test coverage detected