| 9 | const TYPE = 'R'; |
| 10 | |
| 11 | interface RTaskDefinition extends vscode.TaskDefinition { |
| 12 | type: string, |
| 13 | code: string[], |
| 14 | options?: string[], |
| 15 | cwd?: string, |
| 16 | env?: { [key: string]: string } |
| 17 | } |
| 18 | |
| 19 | interface RTaskInfo { |
| 20 | definition: RTaskDefinition, |
nothing calls this directly
no outgoing calls
no test coverage detected