Change JsonProvider from a parent interface to a typealias
This fixes the error seen in the nightlies
This commit is contained in:
parent
d0fd2f4a98
commit
d094233250
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ import kotlinx.serialization.json.Json
|
|||
/**
|
||||
* Provides a Json instance configured to ignore unknown keys.
|
||||
*/
|
||||
fun interface JsonProvider : Provider<Json>
|
||||
typealias JsonProvider = Provider<Json>
|
||||
|
||||
@ContributesBinding(AppScope::class)
|
||||
@SingleIn(AppScope::class)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue