Skip to content
Snippets Groups Projects
index.ts 303 B
Newer Older
Aidan's avatar
Aidan committed
import { registerPlugin } from '@capacitor/core';

import type { MobileLevelPlugin } from './definitions';

const MobileLevel = registerPlugin<MobileLevelPlugin>('MobileLevel', {
  web: () => import('./web').then(m => new m.MobileLevelWeb()),
});

export * from './definitions';
export { MobileLevel };