revanced-integrations/app/src/main/java/app/revanced/integrations/twitter/patches/hook/json/JsonHook.kt

16 lines
392 B
Kotlin

package app.revanced.integrations.twitter.patches.hook.json
import app.revanced.integrations.twitter.patches.hook.patch.Hook
import org.json.JSONObject
interface JsonHook : Hook<JSONObject> {
/**
* Transform a JSONObject.
*
* @param json The JSONObject.
*/
fun transform(json: JSONObject): JSONObject
override fun hook(type: JSONObject) = transform(type)
}