elearning/Frontend-Learner/node_modules/nitropack/dist/runtime/internal/shutdown.d.ts

10 lines
348 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07: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;