Lineage of an input node — always a leaf with deps: [].

interface InputExplanation {
    computedAt: number;
    deps: readonly [];
    node: string;
    value: unknown;
    via: "input";
}

Hierarchy

  • ExplanationCommon
    • InputExplanation

Properties

computedAt: number

GraphTime at which value was last produced.

deps: readonly []

Direct dependencies, each with its own recursive lineage.

node: string

Node whose lineage is being described.

value: unknown

Current value of the node at computedAt.

via: "input"