fix(typescript): Fix template literal in JSDoc causing parse error

Changed template literal in getSchedulesWithStatus JSDoc example
from template literal syntax to string concatenation to avoid
TypeScript parser confusion.

The template literal inside JSDoc code block was being parsed as
actual code, causing 'Unterminated template literal' error.

Verification:
- TypeScript compiles 
- Build passes 
This commit is contained in:
Matthew Raymer
2025-12-23 07:30:21 +00:00
parent 26294bfefd
commit 65f4c77b49

View File

@@ -592,7 +592,7 @@ export interface DailyNotificationPlugin {
* enabled: true
* });
* result.schedules.forEach(schedule => {
* console.log(`${schedule.id}: ${schedule.isActuallyScheduled ? 'Scheduled' : 'Not scheduled'}`);
* console.log(schedule.id + ': ' + (schedule.isActuallyScheduled ? 'Scheduled' : 'Not scheduled'));
* });
* ```
*/