UNPKG

frida-il2cpp-bridge-my

Version:

(my:Support IOS)Frida module to dump, manipulate and hijack any IL2CPP application at runtime with a high level of abstraction.

12 lines (11 loc) 475 B
/// <reference types="frida-gum" /> import { NativeStruct } from "../native-struct"; import { _Il2CppClass } from "./class"; import { _Il2CppObject } from "./object"; export declare class _Il2CppValueType extends NativeStruct { readonly klass: _Il2CppClass; constructor(handle: NativePointer, klass: _Il2CppClass); get class(): _Il2CppClass; get fields(): import("../../utils/accessor").Accessor<import("../interfaces").Valuable>; box(): _Il2CppObject; }