| 15 | } |
| 16 | |
| 17 | export interface IHtmlNode { |
| 18 | id: number; |
| 19 | tag: string; |
| 20 | html: string; |
| 21 | level: Levels; |
| 22 | parent: number; |
| 23 | childrenLevel: Levels; |
| 24 | children?: IHtmlNode[]; |
| 25 | comments?: string[]; |
| 26 | data?: Record<string, unknown>; |
| 27 | } |
| 28 | |
| 29 | export interface IHtmlParserContext { |
| 30 | $node: Cheerio<any>; |
nothing calls this directly
no outgoing calls
no test coverage detected