mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-26 12:08:45 +00:00
11 lines
296 B
Kotlin
11 lines
296 B
Kotlin
package dev.inmo.micro_utils.ksp.classcasts
|
|
|
|
@Target(AnnotationTarget.CLASS)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
annotation class ClassCastsIncluded(
|
|
val typesRegex: String = "",
|
|
val excludeRegex: String = "",
|
|
val outputFilePrefix: String = "",
|
|
val levelsToInclude: Int = -1
|
|
)
|