k-l-lambda's picture
updated node_modules
4cadbaf
raw
history blame
208 Bytes
/// <reference types="node" />
import { Server } from "net";
interface ServerOptions {
rootDir: string;
}
export declare function createServer(httpServer: Server, options: ServerOptions): any;
export {};