| 1725 | remove(): Comment; |
| 1726 | } |
| 1727 | interface Text { |
| 1728 | readonly text: string; |
| 1729 | readonly lastInTextNode: boolean; |
| 1730 | readonly removed: boolean; |
| 1731 | before(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1732 | after(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1733 | replace(content: string | ReadableStream | Response, options?: ContentOptions): Text; |
| 1734 | remove(): Text; |
| 1735 | } |
| 1736 | interface DocumentEnd { |
| 1737 | append(content: string, options?: ContentOptions): DocumentEnd; |
| 1738 | } |
no outgoing calls
no test coverage detected