10 lines
348 B
TypeScript
Raw Permalink Normal View History

2025-09-05 14:59:21 +08:00
import type { Server as HttpServer } from "node:http";
import type { NitroApp } from "nitropack/types";
export declare function getGracefulShutdownConfig(): {
disabled: boolean;
signals: string[];
timeout: number;
forceExit: boolean;
};
export declare function setupGracefulShutdown(listener: HttpServer, nitroApp: NitroApp): void;