( task: TaskInfo, date: Date, completedStatus?: string )
| 441 | * Gets the effective status of a task, considering recurrence |
| 442 | */ |
| 443 | export function getEffectiveTaskStatus( |
| 444 | task: TaskInfo, |
| 445 | date: Date, |
| 446 | completedStatus?: string |
| 447 | ): string { |
| 448 | return getEffectiveTaskStatusCore(task, date, completedStatus); |
| 449 | } |
| 450 | |
| 451 | /** |
| 452 | * Checks if a recurring task should be due on the current target date |
no outgoing calls
no test coverage detected