@get-milano/core 2.1.0
    Preparing search index...

    Interface ResolvedNode

    The resolved tree a binding renders: every property a value. Immutable; re-resolution produces a new tree, sharing untouched subtrees.

    interface ResolvedNode {
        base: string;
        children: readonly ResolvedNode[];
        identities: readonly string[];
        isPlaceholder: boolean;
        rawSubtree: MilanoValue | null;
        reference: string;
        spans: readonly number[];
        type: string;
        values: Readonly<Record<string, MilanoValue>>;
    }
    Index
    base: string

    The template node's reference and, for a $repeat instance, the identity of each enclosing instance (an index or a key rendering, outermost first), which together make reference. Internal: what lets an emission find its template without parsing the reference.

    children: readonly ResolvedNode[]
    identities: readonly string[]
    isPlaceholder: boolean
    rawSubtree: MilanoValue | null
    reference: string
    spans: readonly number[]

    Resolved children per built child, in order: one for a component node, the instance count for a $repeat. Internal to re-resolution.

    type: string
    values: Readonly<Record<string, MilanoValue>>