All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.seskar.js.JsUnion.kt Maven / Gradle / Ivy

There is a newer version: 3.75.0
Show newest version
package seskar.js

@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.BINARY)
annotation class JsUnion(
    val case: Case = Case.ORIGINAL,
)

enum class Case {
    ORIGINAL,
    KEBAB,
    SNAKE,

    ;
}

@Target(AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.BINARY)
annotation class JsInt(
    val value: Int
)

@Target(AnnotationTarget.PROPERTY)
@Retention(AnnotationRetention.BINARY)
annotation class JsString(
    val value: String
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy