fix(typescript): Fix cron expression in JSDoc to avoid parse error

Changed cron expression from '0 0 */6 * *' to '0 0,6,12,18 * * *'
to avoid TypeScript parser confusion. The '*/' sequence was being
interpreted as the end of a JSDoc comment, causing parse errors.

Verification:
- TypeScript compiles 
- Build passes 
This commit is contained in:
Matthew Raymer
2025-12-23 07:32:34 +00:00
parent daf1809165
commit 371f9a7c6d

View File

@@ -636,7 +636,7 @@ export interface DailyNotificationPlugin {
* const schedule = await DailyNotification.createSchedule({
* id: 'daily-fetch',
* kind: 'fetch',
* cron: '0 0 */6 * *',
* cron: '0 0,6,12,18 * * *',
* enabled: true
* });
* ```