| 1243 | remove(): Comment; |
| 1244 | } |
| 1245 | interface Text { |
| 1246 | readonly text: string; |
| 1247 | readonly lastInTextNode: boolean; |
| 1248 | readonly removed: boolean; |
| 1249 | before(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1250 | after(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1251 | replace(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1252 | remove(): Text; |
| 1253 | } |
| 1254 | interface DocumentEnd { |
| 1255 | append(content: string, options?: ContentOptions): DocumentEnd; |
| 1256 | } |
no outgoing calls
no test coverage detected