(children: PhrasingContent[])
| 149 | } |
| 150 | |
| 151 | function createListItem(children: PhrasingContent[]): ListItem { |
| 152 | return { |
| 153 | type: "listItem", |
| 154 | spread: false, |
| 155 | children: [ |
| 156 | { |
| 157 | type: "paragraph", |
| 158 | children, |
| 159 | }, |
| 160 | ], |
| 161 | }; |
| 162 | } |
| 163 | |
| 164 | function formatArgumentLabel(arg: Argument): string { |
| 165 | const name = arg.name(); |
no outgoing calls
no test coverage detected
searching dependent graphs…