Initial commit
This commit is contained in:
10
src/index.ts
Normal file
10
src/index.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { registerPlugin } from '@capacitor/core';
|
||||
|
||||
import type { DailyNotificationPlugin } from './definitions';
|
||||
|
||||
const DailyNotification = registerPlugin<DailyNotificationPlugin>('DailyNotification', {
|
||||
web: () => import('./web').then(m => new m.DailyNotificationWeb()),
|
||||
});
|
||||
|
||||
export * from './definitions';
|
||||
export { DailyNotification };
|
||||
Reference in New Issue
Block a user