diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-04 11:54:25 -0800 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-01-04 11:54:25 -0800 |
commit | 65e172bf3d079c1712154bb68f333a7b2bfd9ad6 (patch) | |
tree | 97d39985e9a0666568a20a5d384a74c1c01e94e8 /src | |
parent | 9b346bb257c1812d544c387f14982838b4ff5827 (diff) |
almost nothing
Diffstat (limited to 'src')
-rw-r--r-- | src/server/Session/session.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/Session/session.ts b/src/server/Session/session.ts index 049a37b04..e32811a18 100644 --- a/src/server/Session/session.ts +++ b/src/server/Session/session.ts @@ -175,7 +175,7 @@ export namespace Session { * email if the server encounters an uncaught exception or if the server cannot be reached. * @param work the function specifying the work to be done by each worker thread */ - export async function initializeWorker(work: Function) { + export async function initializeWorker(work: Function): Promise<void> { let listening = false; // notify master thread (which will log update in the console) of initialization via IPC |