Sets a reminder for a specific notification. Reminder must be a date in the future.
import {setReminder} from 'openfin-notifications';// Set a reminder 1 minute from nowsetReminder('uniqueNotificationId', new Date(Date.now() + 60_000));// Set a reminder for a specific datesetReminder('uniqueNotificationId', new Date('October 21, 2025 07:28:00'));
True if the reminder was set successfully, false otherwise.
ID of the notification to set the reminder for.
Reminder date.
Generated using TypeDoc
Sets a reminder for a specific notification. Reminder must be a date in the future.
Returns
True if the reminder was set successfully, false otherwise.