( card: HTMLElement, task: TaskInfo, plugin: TaskNotesPlugin, shouldExpand: boolean )
| 412 | } |
| 413 | |
| 414 | export async function toggleBlockingTasks( |
| 415 | card: HTMLElement, |
| 416 | task: TaskInfo, |
| 417 | plugin: TaskNotesPlugin, |
| 418 | shouldExpand: boolean |
| 419 | ): Promise<void> { |
| 420 | await toggleBlockingTasksExpansion( |
| 421 | createRelationshipExpansionContext(plugin), |
| 422 | card, |
| 423 | task, |
| 424 | shouldExpand |
| 425 | ); |
| 426 | } |
| 427 | |
| 428 | export async function toggleBlockedByTasks( |
| 429 | card: HTMLElement, |
no test coverage detected