commonMain.io.github.jan.supabase.plugins.CustomSerializationPlugin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of supabase-kt Show documentation
Show all versions of supabase-kt Show documentation
A Kotlin Multiplatform Supabase SDK
package io.github.jan.supabase.plugins
import io.github.jan.supabase.SupabaseClientBuilder
import io.github.jan.supabase.SupabaseSerializer
/**
* A plugin, which allows to customize the serialization
*/
interface CustomSerializationPlugin {
/**
* The serializer used for this module. Defaults to [SupabaseClientBuilder.defaultSerializer], when null.
*/
val serializer: SupabaseSerializer
}