UNPKG

ts-guoguo-mcp-server

Version:

裹裹寄件服务MCP Server - TypeScript版本,基于Model Context Protocol的寄件服务集成工具

20 lines 443 B
/** * API配置类 */ export declare class APIConfig { readonly baseUrl: string; readonly token: string; readonly timeout: number; readonly useMock: boolean; constructor(options?: { baseUrl?: string; token?: string; timeout?: number; useMock?: boolean; }); /** * 获取HTTP请求头 */ get headers(): Record<string, string>; } //# sourceMappingURL=api-config.d.ts.map