UNPKG

servatron

Version:

Create a handler that can server static files using the NodeJS http/http2 modules, or use the inbuilt cli server to quickly run a web server.

8 lines (7 loc) 210 B
export declare enum PathType { NotFound = "NOT_FOUND", File = "FILE", Directory = "DIRECTORY" } export declare function getPathInfo(filePath: string): Promise<PathType>; export default getPathInfo;