Change JsonProvider from a parent interface to a typealias

This fixes the error seen in the nightlies
This commit is contained in:
Jorge Martín 2025-12-22 14:17:08 +01:00
parent 55791ad2ff
commit 9127ce743d

View file

@ -17,7 +17,7 @@ import kotlinx.serialization.json.Json
/** /**
* Provides a Json instance configured to ignore unknown keys. * Provides a Json instance configured to ignore unknown keys.
*/ */
fun interface JsonProvider : Provider<Json> typealias JsonProvider = Provider<Json>
@ContributesBinding(AppScope::class) @ContributesBinding(AppScope::class)
@SingleIn(AppScope::class) @SingleIn(AppScope::class)