react-native-notify-kit / RepeatFrequency
Enumeration: RepeatFrequency
Defined in: packages/react-native/src/types/Trigger.ts:101
An interface representing the different frequencies which can be used with TimestampTrigger.repeatFrequency.
Supported timestamp repeat frequencies are hourly, daily, weekly, and monthly.
Yearly recurrence is not supported.
View the Triggers documentation to learn more.
DAILY
DAILY:
1
Defined in: packages/react-native/src/types/Trigger.ts:113
Repeat every calendar day from the timestamp.
HOURLY
HOURLY:
0
Defined in: packages/react-native/src/types/Trigger.ts:109
Repeat every calendar hour from the timestamp.
MONTHLY
MONTHLY:
3
Defined in: packages/react-native/src/types/Trigger.ts:125
Repeat every calendar month from the timestamp.
Use TimestampTrigger.repeatInterval for intervals such as every 3 months.
Monthly repeats use native calendar semantics; dates that do not exist in a
target month are adjusted by the platform calendar.
NONE
NONE:
-1
Defined in: packages/react-native/src/types/Trigger.ts:105
Do not repeat. TimestampTrigger.repeatInterval cannot be used with NONE.
WEEKLY
WEEKLY:
2
Defined in: packages/react-native/src/types/Trigger.ts:117
Repeat every calendar week from the timestamp.
