capacitor-cors-bypass-enhanced
Version:
Enhanced Capacitor plugin for CORS bypass with HTTP/2, HTTP/3, gRPC, GraphQL, file operations, and advanced networking features. Modular TypeScript definitions for better maintainability.
24 lines (23 loc) • 828 B
JavaScript
/**
* Web Module Exports
* Web端模块导出
*/
// HTTP Manager
export { HttpManager } from './http';
// Stream Manager
export { StreamManager } from './stream';
// SSE Manager
export { SSEManager } from './sse';
// WebSocket Manager
export { WebSocketManager } from './websocket';
// StreamableHTTP Transport (for MCP)
export { StreamableHTTPTransport } from './streamable-http';
// MCP Client Manager
export { MCPClientManager, mcpClientManager } from './mcp-client';
// Interceptor Manager
export { InterceptorManager } from './interceptor';
// Cache System
export { MemoryCacheManager, LocalStorageCacheManager, IndexedDBCacheManager, createCacheManager, } from './cache';
export { CacheInterceptor, createCacheInterceptor, CacheStrategies, } from './cache-interceptor';
// Utils
export { UtilsManager } from './utils';