(
lazyHtml: T,
)
| 11 | // setGlobalPersistCacheConfig(options); |
| 12 | |
| 13 | async function html<T extends () => JSX.Element>( |
| 14 | lazyHtml: T, |
| 15 | ): Promise<Response> { |
| 16 | return renderToStringResponse(lazyHtml); |
| 17 | } |
| 18 | |
| 19 | function htmlStream<T extends () => JSX.Element>(lazyHtml: T): Response { |
| 20 | return renderToStreamResponse(lazyHtml); |
nothing calls this directly
no test coverage detected