mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-06 08:30:57 +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;
|
||
|
};
|
||
|
}
|