ethers.js/misc/admin/lib/cmds/serve-docs.d.ts
2020-09-21 01:14:06 -04:00

8 lines
255 B
TypeScript

import { Server } from "http";
export declare function getMime(filename: string): string;
export declare type Options = {
port?: number;
redirects?: Record<string, string>;
};
export declare function start(root: string, options: Options): Server;