43import type {ThenableState} from './ReactFizzThenable';
44
45▶import {describeObjectForErrorMessage} from 'shared/ReactSerializationErrors';
46
47import {
· · ·
54 flushBuffered,
55 close,
56▶ closeWithError,
57 byteLengthOfChunk,
58} from './ReactServerStreamConfig';
· · ·
251};
252
253▶const CLIENT_RENDERED = 4; // if it errors or infinitely suspends
254
255type SuspenseBoundary = {
· · ·
270 fallbackNode: null | ReplayNode, // used to track the fallback for replay nodes
271 },
272▶ errorDigest: ?string, // the error hash if it errors
273 // DEV-only fields
274 errorMessage?: null | string, // the error string if it errors
· · ·
274▶ errorMessage?: null | string, // the error string if it errors
275 errorStack?: null | string, // the error stack if it errors
276 errorComponentStack?: null | string, // the error component stack if it errors
+ 328 more matches in this file