(plugin: TaskNotesPlugin, count: number)
| 75 | } |
| 76 | |
| 77 | export function getReminderTooltip(plugin: TaskNotesPlugin, count: number): string { |
| 78 | return count === 1 |
| 79 | ? tTaskCard(plugin, "reminderTooltipOne") |
| 80 | : tTaskCard(plugin, "reminderTooltipMany", { count }); |
| 81 | } |
| 82 | |
| 83 | export function getChevronTooltip(plugin: TaskNotesPlugin, expanded: boolean): string { |
| 84 | return expanded |
no test coverage detected