elearning/Frontend-Learner/node_modules/nitropack/dist/runtime/internal/shutdown.d.ts
2026-01-13 10:48:02 +07:00

9 lines
348 B
TypeScript

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;