kotools / libraries

Multiplatform libraries for expressive programming with Kotlin.
https://kotools.github.io/libraries
MIT License
0 stars 0 forks source link

`SinceKotoolsTypes` annotation replacement #54

Closed LVMVRQUXL closed 1 year ago

LVMVRQUXL commented 1 year ago

Description

Replace the SinceKotoolsTypes annotation by using the SinceKotools annotation.

import kotools.shared.Project.Types
import kotools.shared.SinceKotools

@SinceKotoolsTypes("1.0") // replace it by the following annotation
@SinceKotools(Types, "1.0")
public fun doSomething(): Unit = TODO()

Checklist

LVMVRQUXL commented 1 year ago

Done.