(blocks: readonly T[])
| 81 | } |
| 82 | |
| 83 | export function removePlanDraftBlocks<T extends BlockWithType>(blocks: readonly T[]): T[] { |
| 84 | return blocks.filter((block) => block.type !== 'plan_draft').map(cloneBlock) |
| 85 | } |
| 86 | |
| 87 | export function updateLastPlanBlockStatus( |
| 88 | blocks: readonly PlanContentBlock[], |
no outgoing calls
no test coverage detected