Add exit reason types and improve graceful shutdown handling

This commit is contained in:
Raj Rasane
2026-04-02 14:00:32 +05:30
parent 1059915c84
commit 7f969200fb
3 changed files with 21 additions and 6 deletions

View File

@@ -441,3 +441,8 @@ export async function connectRemoteControl(
): Promise<RemoteControlHandle | null> {
throw new Error('not implemented')
}
// add exit reason types for removing the error within gracefulShutdown file
export type ExitReason = {
}