Interface Type

Hierarchy

  • Type

Properties

byteSize: number

Size in bytes.

className?: string

Class name, if applicable.

fromJni?: ((value: any) => any)

Type declaration

    • (value: any): any
    • Converts value from a JNI value to a JavaScript value.

      Parameters

      • value: any

      Returns any

isCompatible: ((value: any) => boolean)

Type declaration

    • (value: any): boolean
    • Checks whether a given JavaScript value is compatible.

      Parameters

      • value: any

      Returns boolean

name: string

VM type name. For example I for int.

read?: ((address: NativePointerValue) => any)

Type declaration

size: number

Size in words.

toJni?: ((value: any) => any)

Type declaration

    • (value: any): any
    • Converts value from a JavaScript value to a JNI value.

      Parameters

      • value: any

      Returns any

type: string

Frida type name. For example pointer for a handle.

write?: ((address: NativePointerValue, value: any) => void)

Type declaration

Generated using TypeDoc