Skip to content

Commit c601eb2

Browse files
committed
fix(backend): fix implicit any for signal parameter in index.ts
1 parent 9889229 commit c601eb2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const startServer = async () => {
2727
await startWorkers();
2828

2929
// Graceful shutdown: stop workers (and indexer) before closing the HTTP server.
30-
const shutdown = (signal) => {
30+
const shutdown = (signal: string) => {
3131
logger.info(`Received ${signal}. Shutting down gracefully...`);
3232
try {
3333
// Prefer a stop() if your service exposes it; otherwise remove this.

0 commit comments

Comments
 (0)