( cb: ((text: string, isError: boolean) => void) | null, )
| 20 | let notifyCallback: ((text: string, isError: boolean) => void) | null = null |
| 21 | |
| 22 | export function setEnvHookNotifier( |
| 23 | cb: ((text: string, isError: boolean) => void) | null, |
| 24 | ): void { |
| 25 | notifyCallback = cb |
| 26 | } |
| 27 | |
| 28 | export function initializeFileChangedWatcher(cwd: string): void { |
| 29 | if (initialized) return |
no outgoing calls
no test coverage detected