app.cash.sqldelight.dialect.api.SqlDelightModule.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dialect-api Show documentation
Show all versions of dialect-api Show documentation
The API Dialects must implement to be compatible with SQLDelight
package app.cash.sqldelight.dialect.api
interface SqlDelightModule {
fun typeResolver(parentResolver: TypeResolver): TypeResolver
fun setup() {}
}