commonMain.co.touchlab.skie.configuration.annotations.DefaultArgumentInterop.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configuration-annotations-1.8.0-js Show documentation
Show all versions of configuration-annotations-1.8.0-js Show documentation
Annotations to configure SKIE behavior.
package co.touchlab.skie.configuration.annotations
@Target
annotation class DefaultArgumentInterop {
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CONSTRUCTOR)
@Retention(AnnotationRetention.BINARY)
annotation class Enabled
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CONSTRUCTOR)
@Retention(AnnotationRetention.BINARY)
annotation class Disabled
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CONSTRUCTOR)
@Retention(AnnotationRetention.BINARY)
annotation class MaximumDefaultArgumentCount(val count: Int)
}