Set path item interface.

interface SetPathItem {
    input: Set<unknown>;
    key: null;
    origin: "value";
    type: "set";
    value: unknown;
}

Properties

input: Set<unknown>

The path item input.

key: null

The path item key.

origin: "value"

The path item origin.

type: "set"

The path item type.

value: unknown

The path item key.