Update renderToPipeableStream#options.onShellError to match usage (#24299)

This commit is contained in:
Sebastian Silbermann
2022-04-07 20:06:54 +01:00
committed by GitHub
parent d68b09defc
commit 548b542b41
+1 -1
View File
@@ -41,7 +41,7 @@ type Options = {|
bootstrapModules?: Array<string>,
progressiveChunkSize?: number,
onShellReady?: () => void,
onShellError?: () => void,
onShellError?: (error: mixed) => void,
onAllReady?: () => void,
onError?: (error: mixed) => void,
|};