(items: ListItem[])
| 140 | } |
| 141 | |
| 142 | function createList(items: ListItem[]): List { |
| 143 | return { |
| 144 | type: "list", |
| 145 | ordered: false, |
| 146 | spread: false, |
| 147 | children: items, |
| 148 | }; |
| 149 | } |
| 150 | |
| 151 | function createListItem(children: PhrasingContent[]): ListItem { |
| 152 | return { |
no outgoing calls
no test coverage detected