UNPKG

zyf-server

Version:

A modern HTTP static file server with Vue SSR directory listing, built for developers

12 lines 314 B
/** * TypeScript版本的简化入口文件 * 用于测试和验证TypeScript重构 */ import type { ServerConfig } from './types'; declare const defaultConfig: ServerConfig; /** * 启动服务器 */ declare function start(): Promise<void>; export { start, defaultConfig }; //# sourceMappingURL=index.d.ts.map