summaryrefslogtreecommitdiff
path: root/core/jsMain/src/kotlinx/serialization/Serializers.kt
blob: 6f7547db4d308ec68fdc9a1834948277d1f3c524 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.serialization

import kotlin.reflect.*


@OptIn(ExperimentalAssociatedObjects::class)
@AssociatedObjectKey
@Retention(AnnotationRetention.BINARY)
@PublishedApi
internal annotation class SerializableWith(public val serializer: KClass<out KSerializer<*>>)