API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

I

interfaceDeserializeContext

@codexo/exojs / core / stable

Context handed to NodeSerializer.read. Mirror of SerializeContext for the inverse direction: child recursion and asset lookup. The framework applies the common fields after `read` returns, so a serializer only constructs the node and sets its type-specific fields.

2
props
2
methods
0
events
Import
import { DeserializeContext } from '@codexo/exojs'

Context handed to NodeSerializer.read. Mirror of SerializeContext for the inverse direction: child recursion and asset lookup. The framework applies the common fields after `read` returns, so a serializer only constructs the node and sets its type-specific fields.

Methods2
Resolve a serialized asset source key back to a loaded resource of type, or null if the source is missing/unset or the asset was not pre-loaded (a one-time warning is emitted in the not-loaded case).
Properties2
loader: Loader | null
The loader used to resolve asset references, or null if none is available.
version: number
Format version of the document being read (after migration).
Source