()
| 386 | void watcher?.close() |
| 387 | let timer: ReturnType<typeof setTimeout> | null = null |
| 388 | const fire = (): void => { |
| 389 | if (timer) clearTimeout(timer) |
| 390 | timer = setTimeout(() => { |
| 391 | timer = null |
| 392 | void listCustomThemes().then(onChange) |
| 393 | }, 200) |
| 394 | } |
| 395 | const w = chokidar.watch(dir, { |
| 396 | ignoreInitial: true, |
| 397 | depth: 1, |
nothing calls this directly
no test coverage detected