DragEventType

@Serializable(with = DragEventTypeSerializer::class)
sealed interface DragEventType

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 parameter 'type' of the command 'Input.dispatchDragEvent'

Official doc

Inheritors

Types

Link copied to clipboard
@Serializable(with = DragEventTypeSerializer::class)
data object dragCancel : DragEventType
Link copied to clipboard
@Serializable(with = DragEventTypeSerializer::class)
data object dragEnter : DragEventType
Link copied to clipboard
@Serializable(with = DragEventTypeSerializer::class)
data object dragOver : DragEventType
Link copied to clipboard
@Serializable(with = DragEventTypeSerializer::class)
data object drop : DragEventType
Link copied to clipboard
@Serializable(with = DragEventTypeSerializer::class)
data class NotDefinedInProtocol(val value: String) : DragEventType

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