UNPKG

capacitor-cors-bypass-enhanced

Version:

Enhanced Capacitor plugin for CORS bypass with HTTP/2, HTTP/3, gRPC, GraphQL, file operations, and advanced networking features

11 lines (7 loc) 297 B
import { registerPlugin } from '@capacitor/core'; import type { CorsBypassPlugin } from './definitions'; const CorsBypass = registerPlugin<CorsBypassPlugin>('CorsBypass', { web: () => import('./web').then(m => new m.CorsBypassWeb()), }); export * from './definitions'; export { CorsBypass };