| 1876 | remove(): Comment; |
| 1877 | } |
| 1878 | interface Text { |
| 1879 | readonly text: string; |
| 1880 | readonly lastInTextNode: boolean; |
| 1881 | readonly removed: boolean; |
| 1882 | before( |
| 1883 | content: string | ReadableStream | Response, |
| 1884 | options?: ContentOptions, |
| 1885 | ): Text; |
| 1886 | after( |
| 1887 | content: string | ReadableStream | Response, |
| 1888 | options?: ContentOptions, |
| 1889 | ): Text; |
| 1890 | replace( |
| 1891 | content: string | ReadableStream | Response, |
| 1892 | options?: ContentOptions, |
| 1893 | ): Text; |
| 1894 | remove(): Text; |
| 1895 | } |
| 1896 | interface DocumentEnd { |
| 1897 | append(content: string, options?: ContentOptions): DocumentEnd; |
| 1898 | } |
no outgoing calls
no test coverage detected