Object path item interface.

interface ObjectPathItem {
    input: Record<string, unknown>;
    key: string;
    origin: "value" | "key";
    type: "object";
    value: unknown;
}

Properties

input: Record<string, unknown>

The path item input.

key: string

The path item key.

origin: "value" | "key"

The path item origin.

type: "object"

The path item type.

value: unknown

The path item value.