(type: 'strong' | 'emphasis' | 'delete')
| 14 | : (next(node, options) as PhrasingContent[]) |
| 15 | |
| 16 | const handleStyling = (type: 'strong' | 'emphasis' | 'delete'): void => { |
| 17 | const styling: Strong | Emphasis | Delete = { type, children } |
| 18 | children = [styling] |
| 19 | } |
| 20 | |
| 21 | const handleHTML = (start: string, end: string): void => { |
| 22 | const htmlStart: HTML = { type: 'html', value: start } |
no outgoing calls
no test coverage detected
searching dependent graphs…