mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-11-15 01:24:44 +00:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
|
|
declare module 'http-server' {
|
||
|
|
export function createServer(options: http.ServerOptions): {
|
||
|
|
server: http.Server;
|
||
|
|
listen: (port: number, host: string, callback: () => void) => void;
|
||
|
|
};
|
||
|
|
}
|