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

This commit is contained in:
Sebastian Silbermann 2022-04-07 21:06:54 +02:00 committed by GitHub
parent d68b09defc
commit 548b542b41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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,
|};