| 1211 | remove(): Comment; |
| 1212 | } |
| 1213 | interface Text { |
| 1214 | readonly text: string; |
| 1215 | readonly lastInTextNode: boolean; |
| 1216 | readonly removed: boolean; |
| 1217 | before(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1218 | after(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1219 | replace(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1220 | remove(): Text; |
| 1221 | } |
| 1222 | interface DocumentEnd { |
| 1223 | append(content: string, options?: ContentOptions): DocumentEnd; |
| 1224 | } |
no outgoing calls
no test coverage detected