(node: string)
| 370 | } |
| 371 | |
| 372 | export function viewItem(node: string): void { |
| 373 | if (isLiveShare()) { |
| 374 | void runTextInTerm(`View(${node}, uuid = ${UUID})`); |
| 375 | } else { |
| 376 | void runTextInTerm(`View(${node})`); |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | export function removeItem(node: string): void { |
| 381 | void runTextInTerm(`rm(${node})`); |
nothing calls this directly
no test coverage detected