mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-10 10:23:49 +00:00
6 lines
247 B
Kotlin
6 lines
247 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 = "")
|