1 package kotlinx.atomicfu 2 3 /** 4 * This annotation actualized with JsName in JS platform and not actualized in others. 5 */ 6 @OptIn(ExperimentalMultiplatform::class) 7 @OptionalExpectation 8 @Retention(AnnotationRetention.BINARY) 9 @Target( 10 AnnotationTarget.CLASS, 11 AnnotationTarget.FUNCTION, 12 AnnotationTarget.PROPERTY, 13 AnnotationTarget.CONSTRUCTOR, 14 AnnotationTarget.PROPERTY_GETTER, 15 AnnotationTarget.PROPERTY_SETTER 16 ) 17 expect annotation class OptionalJsName(val name: String) 18