| 3 | import { onLine, OnLineCallback } from "../../src/node/util" |
| 4 | |
| 5 | interface DevelopmentCompilers { |
| 6 | [key: string]: ChildProcess | undefined |
| 7 | vscode: ChildProcess |
| 8 | vscodeWebExtensions: ChildProcess |
| 9 | codeServer: ChildProcess |
| 10 | plugins: ChildProcess | undefined |
| 11 | } |
| 12 | |
| 13 | class Watcher { |
| 14 | private rootPath = path.resolve(process.cwd()) |
nothing calls this directly
no outgoing calls
no test coverage detected