UNPKG

zyf-server

Version:

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

20 lines 503 B
#!/usr/bin/env node /** * CLI入口文件 * 基于TypeScript重写的命令行工具 */ import type { ServerConfig, CliOptions } from '../types'; /** * 解析CLI选项并转换为服务器配置 */ declare function parseOptions(options: CliOptions): ServerConfig; /** * 启动服务器 */ declare function startServer(config: ServerConfig): Promise<void>; /** * 主函数 */ declare function main(): Promise<void>; export { main, startServer, parseOptions }; //# sourceMappingURL=index.d.ts.map