10 lines
334 B
TypeScript
10 lines
334 B
TypeScript
import { registerPlugin } from '@capacitor/core';
|
|
|
|
import type { DumonGeolocationPlugin } from './definitions';
|
|
|
|
const DumonGeolocation = registerPlugin<DumonGeolocationPlugin>('DumonGeolocation', {
|
|
web: () => import('./web').then((m) => new m.DumonGeolocationWeb()),
|
|
});
|
|
|
|
export * from './definitions';
|
|
export { DumonGeolocation }; |