( plugin: TaskNotesPlugin, recurrence: string, propertyLabels?: Record<string, string> )
| 64 | } |
| 65 | |
| 66 | export function getRecurrenceTooltip( |
| 67 | plugin: TaskNotesPlugin, |
| 68 | recurrence: string, |
| 69 | propertyLabels?: Record<string, string> |
| 70 | ): string { |
| 71 | return tTaskCard(plugin, "recurrenceTooltip", { |
| 72 | label: getTaskCardPropertyLabel("recurrence", plugin, propertyLabels), |
| 73 | value: getRecurrenceDisplayText(recurrence), |
| 74 | }); |
| 75 | } |
| 76 | |
| 77 | export function getReminderTooltip(plugin: TaskNotesPlugin, count: number): string { |
| 78 | return count === 1 |
no test coverage detected