Initial commit

This commit is contained in:
Matthew Raymer
2025-03-25 10:40:14 +00:00
commit e946767cba
6 changed files with 128 additions and 0 deletions

10
src/index.ts Normal file
View 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 };