MetaPhrase

An open source translation editor for native mobile app localization.

View project on GitHub

//MetaPhrase/com.github.diegoberaldin.metaphrase.domain.project.usecase/ValidatePlaceholdersUseCase/Output

Output

interface Output

Result of the validation.

Inheritors

 
Valid
Invalid

Types

Name Summary
Invalid [jvm]
data class Invalid(val keys: List<String> = emptyList()) : ValidatePlaceholdersUseCase.Output
Case where some errors were detected.
Valid [jvm]
object Valid : ValidatePlaceholdersUseCase.Output
Case where no errors were detected.