interface Reference {
    key?: string | number;
    obj?: unknown;
    val: unknown;
}

Properties

Properties

key?: string | number

Key which targets the target value in the object.

obj?: unknown

Object which contains the target value.

val: unknown

Target value where pointer is pointing.