Skip to content

Commit de56e9c

Browse files
chore(update-plugins): Thu Sep 28 08:05:32 UTC 2023
1 parent 6c3cd3c commit de56e9c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

plugins/firebase-remote-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,9 +377,9 @@ Asynchronously fetches and then activates the fetched configs. For more informat
377377
#### getAll()
378378
379379
```ts
380-
import { firebase } from '@nativescript/firebase-core';
380+
import { firebase } from '@nativescript/firebase-core'
381381

382-
parameters: Record<string, ConfigValue> = firebase().remoteConfig().getAll();
382+
parameters: Record<string, ConfigValue> = firebase().remoteConfig().getAll()
383383
```
384384
385385
Returns an object with all the parameters in the Remote Config.

plugins/local-notifications.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ LocalNotifications.addOnMessageReceivedCallback(notification => {
164164
### schedule()
165165

166166
```ts
167-
scheduledNotificationsIDs: Array<number> = await LocalNotifications.schedule(scheduleOptions)
167+
scheduledNotificationsIDs: Array<number> = await LocalNotifications.schedule(
168+
scheduleOptions
169+
)
168170
```
169171

170172
Schedules the specified [scheduleOptions](#scheduleoptions) notification(s), if the user has granted the permission. If the user has not been prompted for permission, it prompts the user for permission and schedules the notification(s) if permission is granted. For a manual permission request, use the [requestPermission](#requestpermission) method.

0 commit comments

Comments
 (0)