( card: HTMLElement, task: TaskInfo, plugin: TaskNotesPlugin, expanded: boolean )
| 403 | * Toggle subtasks display for a project task card |
| 404 | */ |
| 405 | export async function toggleSubtasks( |
| 406 | card: HTMLElement, |
| 407 | task: TaskInfo, |
| 408 | plugin: TaskNotesPlugin, |
| 409 | expanded: boolean |
| 410 | ): Promise<void> { |
| 411 | await toggleSubtasksExpansion(createRelationshipExpansionContext(plugin), card, task, expanded); |
| 412 | } |
| 413 | |
| 414 | export async function toggleBlockingTasks( |
| 415 | card: HTMLElement, |
no test coverage detected