main.phraseapp.repositories.checks.strategies.Strategy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-client Show documentation
Show all versions of gradle-client Show documentation
JVM client to interact with Phrase via its API.
The newest version!
package phraseapp.repositories.checks.strategies
import phraseapp.extensions.ResourceTranslation
import phraseapp.repositories.checks.CheckTranslation
interface Strategy {
suspend fun apply(defaultContent: ResourceTranslation, targetContent: ResourceTranslation): List
}