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.
13 lines (12 loc) • 467 B
TypeScript
import { NativeStruct } from "../native-struct";
import { _Il2CppClass } from "./class";
import { _Il2CppGenericClass } from "./generic-class";
import { _Il2CppTypeEnum } from "./type-enum";
export declare class _Il2CppType extends NativeStruct {
get class(): _Il2CppClass;
get dataType(): _Il2CppType | null;
get genericClass(): _Il2CppGenericClass | null;
get isByReference(): boolean;
get name(): string;
get typeEnum(): _Il2CppTypeEnum;
}