| 1203 | remove(): EndTag; |
| 1204 | } |
| 1205 | interface Comment { |
| 1206 | text: string; |
| 1207 | readonly removed: boolean; |
| 1208 | before(content: string, options?: ContentOptions): Comment; |
| 1209 | after(content: string, options?: ContentOptions): Comment; |
| 1210 | replace(content: string, options?: ContentOptions): Comment; |
| 1211 | remove(): Comment; |
| 1212 | } |
| 1213 | interface Text { |
| 1214 | readonly text: string; |
| 1215 | readonly lastInTextNode: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected