Type alias ScheduledNotificationInput
ScheduledNotificationInput: { content: { subtitle: string; body: string; data: { [
k:
string]
: unknown; }; priority?: NotificationPriority; }; trigger?: { date: Date; }; action?: NotificationAction; } Type declaration
content: {
subtitle: string;
body: string;
data: {
[k: string]: unknown;
};
priority?: NotificationPriority;
}
subtitle: string
body: string
data: {
[k: string]: unknown;
}
Optional trigger?: {
date: Date;
}