vibetunnel
Version:
Terminal sharing server with web interface - supports macOS, Linux, and headless environments
8 lines (7 loc) • 304 B
TypeScript
/**
* Global shutdown state management for the server.
* This module tracks whether the server is currently shutting down
* to allow various components to handle shutdown gracefully.
*/
export declare function isShuttingDown(): boolean;
export declare function setShuttingDown(value: boolean): void;