interface RenderToPipeableStreamOptions {
    bootstrapModules?: string[];
    bootstrapScriptContent?: string;
    bootstrapScripts?: string[];
    identifierPrefix?: string;
    namespaceURI?: string;
    nonce?: string;
    onAllReady?: (() => void);
    onError?: ((error, errorInfo) => string | void);
    onShellError?: ((error) => void);
    onShellReady?: (() => void);
    progressiveChunkSize?: number;
}

Properties

bootstrapModules?: string[]
bootstrapScriptContent?: string
bootstrapScripts?: string[]
identifierPrefix?: string
namespaceURI?: string
nonce?: string
onAllReady?: (() => void)

Type declaration

    • (): void
    • Returns void

onError?: ((error, errorInfo) => string | void)

Type declaration

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

      • error: unknown
      • errorInfo: ErrorInfo

      Returns string | void

onShellError?: ((error) => void)

Type declaration

    • (error): void
    • Parameters

      • error: unknown

      Returns void

onShellReady?: (() => void)

Type declaration

    • (): void
    • Returns void

progressiveChunkSize?: number