Package-level declarations

Types

Link copied to clipboard
actual typealias IgnoredOnParcel = kotlinx.parcelize.IgnoredOnParcel
@Target(allowedTargets = [AnnotationTarget.PROPERTY])
expect annotation class IgnoredOnParcel

A multiplatform alias for kotlinx.parcelize.IgnoredOnParcel from the kotlin-parcelize Gradle plugin. Make sure you have the kotlin-parcelize Gradle plugin applied.

@Target(allowedTargets = [AnnotationTarget.PROPERTY])
actual annotation class IgnoredOnParcel
Link copied to clipboard
expect interface Parcelable

Represents an object that can be serialized and deserialized.

actual interface Parcelable
Link copied to clipboard
actual typealias Parceler<T> = kotlinx.parcelize.Parceler<T>
expect interface Parceler<T>

A multiplatform alias for kotlinx.parcelize.Parceler from the kotlin-parcelize Gradle plugin. Make sure you have the kotlin-parcelize Gradle plugin applied.

actual interface Parceler<T>
Link copied to clipboard
actual typealias Parcelize = kotlinx.parcelize.Parcelize
@Target(allowedTargets = [AnnotationTarget.CLASS])
expect annotation class Parcelize

A multiplatform alias for kotlinx.parcelize.Parcelize from the kotlin-parcelize Gradle plugin. Make sure you have the kotlin-parcelize Gradle plugin applied.

@Target(allowedTargets = [AnnotationTarget.CLASS])
actual annotation class Parcelize
Link copied to clipboard
actual typealias TypeParceler<T, P> = kotlinx.parcelize.TypeParceler<T, P>
expect annotation class TypeParceler<T, P : Parceler<in T>>

A multiplatform alias for kotlinx.parcelize.TypeParceler from the kotlin-parcelize Gradle plugin. Make sure you have the kotlin-parcelize Gradle plugin applied.

actual annotation class TypeParceler<T, P : Parceler<in T>>
Link copied to clipboard
actual typealias WriteWith<P> = kotlinx.parcelize.WriteWith<P>
@Target(allowedTargets = [AnnotationTarget.TYPE])
expect annotation class WriteWith<P : Parceler<*>>

A multiplatform alias for kotlinx.parcelize.WriteWith from the kotlin-parcelize Gradle plugin. Make sure you have the kotlin-parcelize Gradle plugin applied.

@Target(allowedTargets = [AnnotationTarget.TYPE])
actual annotation class WriteWith<P : Parceler<*>>