function renderToStreamimport { renderToStream } from "https://dotland.deno.dev/x/solid@v1.9.3/web/src/server-mock.ts"; renderToStream<T>(fn: () => T, options?: { nonce?: string; renderId?: string; onCompleteShell?: (info: { write: (v: string) => void; }) => void; onCompleteAll?: (info: { write: (v: string) => void; }) => void; }): { pipe: (writable: { write: (v: string) => void; }) => void; pipeTo: (writable: WritableStream) => void; }Type ParametersTParametersfn: () => Toptionaloptions: { nonce?: string; renderId?: string; onCompleteShell?: (info: { write: (v: string) => void; }) => void; onCompleteAll?: (info: { write: (v: string) => void; }) => void; }Returns{ pipe: (writable: { write: (v: string) => void; }) => void; pipeTo: (writable: WritableStream) => void; }