diff --git a/scripts/watcher/LongRunningExecutor.ts b/scripts/watcher/LongRunningExecutor.ts index c1c1b4ff8..9abeedbc5 100644 --- a/scripts/watcher/LongRunningExecutor.ts +++ b/scripts/watcher/LongRunningExecutor.ts @@ -50,12 +50,12 @@ export default class LongRunningExecutor implements Executor { }); } - private async restart(): Promise { + private restart() { this.shouldRestart = true; return this.internalKill(); } - private async kill(): Promise { + private kill() { this.shouldRestart = false; return this.internalKill(); } diff --git a/scripts/watcher/pstree.remy.d.ts b/scripts/watcher/types/pstree.remy.d.ts similarity index 100% rename from scripts/watcher/pstree.remy.d.ts rename to scripts/watcher/types/pstree.remy.d.ts