(c: (typeof node.children)[0])
| 86 | let pieCommon: { x: number; y: number; w: number; h: number } | null = null |
| 87 | if (node.children.length === 6 && chExt.w > 0 && chExt.h > 0) { |
| 88 | const prst = (c: (typeof node.children)[0]) => c.child('spPr').child('prstGeom').attr('prst') |
| 89 | const firstPie = node.children.slice(0, 3).every((c) => prst(c) === 'pie') |
| 90 | const nextArrow = node.children.slice(3, 6).every((c) => prst(c) === 'circularArrow') |
| 91 | if (firstPie && nextArrow) { |
no test coverage detected