interface RenderToReadableStreamOptions {
    bootstrapModules?: string[];
    bootstrapScriptContent?: string;
    bootstrapScripts?: string[];
    identifierPrefix?: string;
    namespaceURI?: string;
    nonce?: string;
    onError?: ((error, errorInfo) => string | void);
    progressiveChunkSize?: number;
    signal?: AbortSignal;
}

Properties

bootstrapModules?: string[]
bootstrapScriptContent?: string
bootstrapScripts?: string[]
identifierPrefix?: string
namespaceURI?: string
nonce?: string
onError?: ((error, errorInfo) => string | void)

Type declaration

    • (error, errorInfo): string | void
    • Parameters

      • error: unknown
      • errorInfo: ErrorInfo

      Returns string | void

progressiveChunkSize?: number
signal?: AbortSignal