We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 057512a commit 00d313fCopy full SHA for 00d313f
site/docs-md/apis/local-notifications/index.md
@@ -23,7 +23,7 @@ Local Notifications are great for reminding the user about a change in the app s
23
import { Plugins } from '@capacitor/core';
24
const { LocalNotifications } = Plugins;
25
26
-LocalNotifications.schedule({
+const notifs = await LocalNotifications.schedule({
27
notifications: [
28
{
29
title: "Title",
@@ -37,6 +37,7 @@ LocalNotifications.schedule({
37
}
38
]
39
});
40
+console.log('scheduled notifications', notifs);
41
```
42
43
## API
0 commit comments