Frida Docs Unified
    Preparing search index...

    Interface Field<Value, Holder>

    interface Field<Value = any, Holder extends Members<Holder> = {}> {
        fieldReturnType: default.Type;
        fieldType: FieldType;
        holder: Wrapper<Holder>;
        value: Value;
    }

    Type Parameters

    Index

    Properties

    fieldReturnType: default.Type

    Type of value.

    fieldType: FieldType

    What kind of field this is, i.e. static vs instance.

    holder: Wrapper<Holder>

    Class that this field belongs to.

    value: Value

    Current value of this field. Assign to update the field's value.