( fn: (context: PageEvent) => JSX.Element, options?: HandlerOptions | ((context: PageEvent) => HandlerOptions), )
| 9 | * Read more: https://docs.solidjs.com/solid-start/reference/server/create-handler |
| 10 | */ |
| 11 | export function createHandler( |
| 12 | fn: (context: PageEvent) => JSX.Element, |
| 13 | options?: HandlerOptions | ((context: PageEvent) => HandlerOptions), |
| 14 | ) { |
| 15 | return createBaseHandler(createPageEvent, fn, options); |
| 16 | } |
| 17 | |
| 18 | async function createPageEvent(ctx: FetchEvent) { |
| 19 | const manifest = getSsrManifest("ssr"); |
nothing calls this directly
no test coverage detected