8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
/**
|
|
* Watcher incremental via chokidar — stub.
|
|
* Implementação completa na Task 8 (Pipeline: incremental watch + resiliência).
|
|
*/
|
|
export function startWatcher(): never {
|
|
throw new Error('watcher não implementado — ver Task 8')
|
|
}
|