server: rpc/threading

This commit is contained in:
Koushik Dutta
2022-02-12 19:09:42 -08:00
parent a882bb8e80
commit 44b4fa2bd4
18 changed files with 294 additions and 103 deletions

View File

@@ -15,7 +15,6 @@ export interface RuntimeWorker {
kill(): void;
on(event: 'error', listener: (err: Error) => void): this;
on(event: 'error', listener: (err: Error) => void): this;
on(event: 'close', listener: (code: number | null, signal: NodeJS.Signals | null) => void): this;
on(event: 'disconnect', listener: () => void): this;