New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

reminder-handler

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reminder-handler

... A Capacitor plugin to schedule and manage full-screen alarm and reminder notifications on Android.

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

reminder-handler

... A Capacitor plugin to schedule and manage full-screen alarm and reminder notifications on Android.

Install

npm install reminder-handler
npx cap sync

API

  • echo(...)
  • checkPermission()
  • checkIntentExtras()
  • checkAlarmOpened()
  • checkAlarmDismissed()
  • setAlarm(...)
  • cancelAlarm()
  • requestPermission()
  • addListener('alarmAction', ...)
  • removeAllListeners()
  • Interfaces

echo(...)

echo(options: { value: string; }) => Promise<{ value: string; }>
ParamType
options{ value: string; }

Returns: Promise<{ value: string; }>

checkPermission()

checkPermission() => Promise<PermissionResponse>

Returns: Promise<PermissionResponse>

checkIntentExtras()

checkIntentExtras() => Promise<IntentExtrasResponse>

Returns: Promise<IntentExtrasResponse>

checkAlarmOpened()

checkAlarmOpened() => Promise<AlarmOpenedResponse>

Returns: Promise<AlarmOpenedResponse>

checkAlarmDismissed()

checkAlarmDismissed() => Promise<AlarmDismissedResponse>

Returns: Promise<AlarmDismissedResponse>

setAlarm(...)

setAlarm(options: { delay: number; title: string; message: string; id?: string; openButtonText?: string; }) => Promise<AlarmResponse>
ParamType
options{ delay: number; title: string; message: string; id?: string; openButtonText?: string; }

Returns: Promise<AlarmResponse>

cancelAlarm()

cancelAlarm() => Promise<AlarmResponse>

Returns: Promise<AlarmResponse>

requestPermission()

requestPermission() => Promise<void>

addListener('alarmAction', ...)

addListener(eventName: 'alarmAction', listenerFunc: (data: AlarmActionData) => void) => Promise<PluginListenerHandle>
ParamType
eventName'alarmAction'
listenerFunc(data: AlarmActionData) => void

Returns: Promise<PluginListenerHandle>

removeAllListeners()

removeAllListeners() => Promise<void>

Interfaces

PermissionResponse

PropType
hasPermissionboolean

IntentExtrasResponse

PropType
triggeredboolean
openedboolean
titlestring
messagestring
timestampnumber

AlarmOpenedResponse

PropType
openedboolean
titlestring
messagestring
timestampnumber

AlarmDismissedResponse

PropType
dismissedboolean
titlestring
messagestring
timestampnumber

AlarmResponse

PropType
successboolean
messagestring
triggerTimenumber

PluginListenerHandle

PropType
remove() => Promise<void>

AlarmActionData

PropType
actionstring
notificationIdstring
titlestring
messagestring
snoozeMinutesnumber

Keywords

capacitor

FAQs

Package last updated on 25 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts