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