solorice/vscode/extensions/ritwickdey.liveserver-5.7.5/node_modules/http-shutdown/index.d.ts
2022-04-28 20:54:44 +03:00

13 lines
293 B
TypeScript

// Missing type definitions
import { Server } from 'net';
export = wrapShutdown;
interface WithShutdown extends Server {
shutdown(cb: (err?: Error) => any): void;
forceShutdown(cb: (err?: Error) => any): void;
}
declare function wrapShutdown<S extends Server>(s: S): S & WithShutdown;