aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/migration/LoadingAdapter.kt
blob: 8aa8f59dae8baf06f8620e21eb1f1c68921942cc (plain)
1
2
3
4
5
6
7
8
package at.hannibal2.skyhanni.config.migration

import com.google.gson.JsonElement
import java.lang.reflect.Type

fun interface LoadingAdapter<T> {
    fun adapt(path: ResolutionPath, hierarchy: List<JsonElement?>, type: Type): LoadResult<T>
}