io.github.pidoveproject.showdown.protocol.Assertion.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-showdown-api_3 Show documentation
Show all versions of scala-showdown-api_3 Show documentation
A Scala wrapper of Pokemon Showdown's API
The newest version!
package io.github.pidoveproject.showdown.protocol
import io.github.iltotore.iron.*
import io.github.iltotore.iron.constraint.any.Not
import io.github.iltotore.iron.constraint.string.Blank
private type AssertionConstraint = Not[Blank]
opaque type Assertion <: String = String :| AssertionConstraint
object Assertion extends RefinedTypeOps[String, AssertionConstraint, Assertion]