webserv
Version:
a quick, flexible, fully typed development server
7 lines (6 loc) • 303 B
TypeScript
import { Service } from '../app';
import { RouteProperties } from '../interface';
import { ServeProperties } from '../middleware/serve';
export interface FileServiceProperties extends ServeProperties, RouteProperties {
}
export declare function fileService(props: FileServiceProperties): Service;