( destination: Destination, resumableState: ResumableState, renderState: RenderState, skipBlockingShell: boolean, )
| 219 | } |
| 220 | |
| 221 | export function writePreambleStart( |
| 222 | destination: Destination, |
| 223 | resumableState: ResumableState, |
| 224 | renderState: RenderState, |
| 225 | skipBlockingShell: boolean, |
| 226 | ): void { |
| 227 | return writePreambleStartImpl( |
| 228 | destination, |
| 229 | resumableState, |
| 230 | renderState, |
| 231 | true, // skipBlockingShell |
| 232 | ); |
| 233 | } |
| 234 | |
| 235 | export function writeCompletedRoot( |
| 236 | destination: Destination, |