AnimationType

@Serializable(with = AnimationTypeSerializer::class)
sealed interface AnimationType

This enum doesn't have a proper description because it was generated from an inline declaration. Its name was inferred based on the place where it is used:

  • the property 'type' of the type 'Animation'

Official doc

Inheritors

Types

Link copied to clipboard
@Serializable(with = AnimationTypeSerializer::class)
data object CSSAnimation : AnimationType
Link copied to clipboard
@Serializable(with = AnimationTypeSerializer::class)
data object CSSTransition : AnimationType
Link copied to clipboard
@Serializable(with = AnimationTypeSerializer::class)
data class NotDefinedInProtocol(val value: String) : AnimationType

This extra enum entry represents values returned by Chrome that were not defined in the protocol (for instance new values that were added later).

Link copied to clipboard
@Serializable(with = AnimationTypeSerializer::class)
data object WebAnimation : AnimationType