Skip to main content

ViewRenderOutcome

type

How a render attempt settled. `rendered` means the mod component mounted; `failed` means this boundary mounted its failure card instead. Both are settlements — the shell stops showing "loading" on either, because a view that has finished failing is no longer loading.

type ViewRenderOutcome = 'rendered' | 'failed'

Import

import { ViewRenderOutcome } from '@modular/sdk/view';