revanced-integrations/app/src/main/java/app/revanced/integrations/twitter/patches/hook/patch/Hook.kt

10 lines
189 B
Kotlin

package app.revanced.integrations.twitter.patches.hook.patch
interface Hook<T> {
/**
* Hook the given type.
* @param type The type to hook
*/
fun hook(type: T): T
}