Skip to main content

publicPatchedFunctionInfo

Info about a function modified using the API

Index

Properties

optionalcurrentEntrypoint

currentEntrypoint?: (...args) => any

Entrypoint that SDK collected at the time of calling of the getPatchingInfo method.

If the function wasn't overwritten, it should equal sdkEntrypoint


Type declaration

    • (...args): any
    • Parameters

      • rest...args: any[]

      Returns any

hookedByMods

hookedByMods: string[]

List of names of mods that hooked this function

name

name: string

optionaloriginal

original?: (...args) => any

The original function


Type declaration

    • (...args): any
    • Parameters

      • rest...args: any[]

      Returns any

originalHash

originalHash: string

CRC32 has of the original function

patchedByMods

patchedByMods: string[]

List of names of mods that patched this function

optionalsdkEntrypoint

sdkEntrypoint?: (...args) => any

SDK-generated entrypoint that the global function was replaced with


Type declaration

    • (...args): any
    • Parameters

      • rest...args: any[]

      Returns any