| 281 | // interface |
| 282 | // represents addins in a QuickPick menu |
| 283 | interface AddinItem extends QuickPickItem { |
| 284 | binding: string; |
| 285 | package: string; |
| 286 | } |
| 287 | |
| 288 | let addinQuickPicks: AddinItem[] | undefined = undefined; |
| 289 |
nothing calls this directly
no outgoing calls
no test coverage detected