io.laminext.validation.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation-core_sjs1_3 Show documentation
Show all versions of validation-core_sjs1_3 Show documentation
Laminar utilities and components
package io.laminext
package object validation {
type ValidatedValue[Err, A] = Either[Err, A]
type Validation[A, Err, Out] = A => ValidatedValue[Err, Out]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy