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 };