webserv
Version:
a quick, flexible, fully typed development server
10 lines (9 loc) • 355 B
TypeScript
import { FileServiceProperties } from '../../core/services/file.service';
import { ServiceLoader } from '../loader';
export interface FileConfig extends Omit<FileServiceProperties, 'basePath' | 'path'> {
basePath?: string;
routes: {
[key: string]: string;
};
}
export declare const bootFileService: ServiceLoader<FileConfig>;