(parts: readonly ReplayPart[])
| 117 | } |
| 118 | |
| 119 | export function partsToContentChunks(parts: readonly ReplayPart[]): ContentChunk[] { |
| 120 | return parts.flatMap(partToContentChunks) |
| 121 | } |
| 122 | |
| 123 | export function partToContentChunks(part: ReplayPart): ContentChunk[] { |
| 124 | switch (part.type) { |
no outgoing calls
no test coverage detected