import { registerPlugin } from '@capacitor/core'; import type { BrowserPlugin } from './definitions'; const Browser = registerPlugin('Browser', { web: () => import('./web').then(m => new m.BrowserWeb()), }); export * from './definitions'; export { Browser };