Interface DOMAttributes

interface DOMAttributes {
    onAbort?: EventFunc<"abort">;
    onAnimationEnd?: EventFunc<"animationend">;
    onAnimationIteration?: EventFunc<"animationiteration">;
    onAnimationStart?: EventFunc<"animationstart">;
    onAuxClick?: EventFunc<"auxclick">;
    onBeforeInput?: EventFunc<"beforeinput">;
    onBlur?: EventFunc<"blur">;
    onCanPlay?: EventFunc<"canplay">;
    onCanPlayThrough?: EventFunc<"canplaythrough">;
    onChange?: EventFunc<"change">;
    onClick?: EventFunc<"click">;
    onCompositionEnd?: EventFunc<"compositionend">;
    onCompositionStart?: EventFunc<"compositionstart">;
    onCompositionUpdate?: EventFunc<"compositionupdate">;
    onContextMenu?: EventFunc<"contextmenu">;
    onCopy?: EventFunc<"copy">;
    onCut?: EventFunc<"cut">;
    onDblClick?: EventFunc<"dblclick">;
    onDrag?: EventFunc<"drag">;
    onDragEnd?: EventFunc<"dragend">;
    onDragEnter?: EventFunc<"dragenter">;
    onDragLeave?: EventFunc<"dragleave">;
    onDragOver?: EventFunc<"dragover">;
    onDragStart?: EventFunc<"dragstart">;
    onDrop?: EventFunc<"drop">;
    onDurationChange?: EventFunc<"durationchange">;
    onEmptied?: EventFunc<"emptied">;
    onEncrypted?: EventFunc<"encrypted">;
    onEnded?: EventFunc<"ended">;
    onError?: EventFunc<"error">;
    onFocus?: EventFunc<"focus">;
    onInput?: EventFunc<"input">;
    onInvalid?: EventFunc<"invalid">;
    onKeyDown?: EventFunc<"keydown">;
    onKeyPress?: EventFunc<"keypress">;
    onKeyUp?: EventFunc<"keyup">;
    onLoad?: EventFunc<"load">;
    onLoadStart?: EventFunc<"loadstart">;
    onLoadedData?: EventFunc<"loadeddata">;
    onLoadedMetadata?: EventFunc<"loadedmetadata">;
    onMouseDown?: EventFunc<"mousedown">;
    onMouseEnter?: EventFunc<"mouseenter">;
    onMouseLeave?: EventFunc<"mouseleave">;
    onMouseMove?: EventFunc<"mousemove">;
    onMouseOut?: EventFunc<"mouseout">;
    onMouseOver?: EventFunc<"mouseover">;
    onMouseUp?: EventFunc<"mouseup">;
    onPaste?: EventFunc<"paste">;
    onPause?: EventFunc<"pause">;
    onPlay?: EventFunc<"play">;
    onPlaying?: EventFunc<"playing">;
    onPointerCancel?: EventFunc<"pointercancel">;
    onPointerDown?: EventFunc<"pointerdown">;
    onPointerEnter?: EventFunc<"pointerenter">;
    onPointerLeave?: EventFunc<"pointerleave">;
    onPointerMove?: EventFunc<"pointermove">;
    onPointerOut?: EventFunc<"pointerout">;
    onPointerOver?: EventFunc<"pointerover">;
    onPointerUp?: EventFunc<"pointerup">;
    onProgress?: EventFunc<"progress">;
    onRateChange?: EventFunc<"ratechange">;
    onReset?: EventFunc<"reset">;
    onResize?: EventFunc<"resize">;
    onScroll?: EventFunc<"scroll">;
    onSeeked?: EventFunc<"seeked">;
    onSeeking?: EventFunc<"seeking">;
    onSelect?: EventFunc<"select">;
    onStalled?: EventFunc<"stalled">;
    onSubmit?: EventFunc<"submit">;
    onSuspend?: EventFunc<"suspend">;
    onTimeUpdate?: EventFunc<"timeupdate">;
    onTouchCancel?: EventFunc<"touchcancel">;
    onTouchEnd?: EventFunc<"touchend">;
    onTouchMove?: EventFunc<"touchmove">;
    onTouchStart?: EventFunc<"touchstart">;
    onTransitionEnd?: EventFunc<"transitionend">;
    onVolumeChange?: EventFunc<"volumechange">;
    onWaiting?: EventFunc<"waiting">;
    onWheel?: EventFunc<"wheel">;
}

Hierarchy (view full)

Properties

onAbort?: EventFunc<"abort">
onAnimationEnd?: EventFunc<"animationend">
onAnimationIteration?: EventFunc<"animationiteration">
onAnimationStart?: EventFunc<"animationstart">
onAuxClick?: EventFunc<"auxclick">
onBeforeInput?: EventFunc<"beforeinput">
onBlur?: EventFunc<"blur">
onCanPlay?: EventFunc<"canplay">
onCanPlayThrough?: EventFunc<"canplaythrough">
onChange?: EventFunc<"change">
onClick?: EventFunc<"click">
onCompositionEnd?: EventFunc<"compositionend">
onCompositionStart?: EventFunc<"compositionstart">
onCompositionUpdate?: EventFunc<"compositionupdate">
onContextMenu?: EventFunc<"contextmenu">
onCopy?: EventFunc<"copy">
onCut?: EventFunc<"cut">
onDblClick?: EventFunc<"dblclick">
onDrag?: EventFunc<"drag">
onDragEnd?: EventFunc<"dragend">
onDragEnter?: EventFunc<"dragenter">
onDragLeave?: EventFunc<"dragleave">
onDragOver?: EventFunc<"dragover">
onDragStart?: EventFunc<"dragstart">
onDrop?: EventFunc<"drop">
onDurationChange?: EventFunc<"durationchange">
onEmptied?: EventFunc<"emptied">
onEncrypted?: EventFunc<"encrypted">
onEnded?: EventFunc<"ended">
onError?: EventFunc<"error">
onFocus?: EventFunc<"focus">
onInput?: EventFunc<"input">
onInvalid?: EventFunc<"invalid">
onKeyDown?: EventFunc<"keydown">
onKeyPress?: EventFunc<"keypress">

Deprecated

onKeyUp?: EventFunc<"keyup">

Deprecated

onLoad?: EventFunc<"load">
onLoadStart?: EventFunc<"loadstart">
onLoadedData?: EventFunc<"loadeddata">
onLoadedMetadata?: EventFunc<"loadedmetadata">
onMouseDown?: EventFunc<"mousedown">
onMouseEnter?: EventFunc<"mouseenter">
onMouseLeave?: EventFunc<"mouseleave">
onMouseMove?: EventFunc<"mousemove">
onMouseOut?: EventFunc<"mouseout">
onMouseOver?: EventFunc<"mouseover">
onMouseUp?: EventFunc<"mouseup">
onPaste?: EventFunc<"paste">
onPause?: EventFunc<"pause">
onPlay?: EventFunc<"play">
onPlaying?: EventFunc<"playing">
onPointerCancel?: EventFunc<"pointercancel">
onPointerDown?: EventFunc<"pointerdown">
onPointerEnter?: EventFunc<"pointerenter">
onPointerLeave?: EventFunc<"pointerleave">
onPointerMove?: EventFunc<"pointermove">
onPointerOut?: EventFunc<"pointerout">
onPointerOver?: EventFunc<"pointerover">
onPointerUp?: EventFunc<"pointerup">
onProgress?: EventFunc<"progress">
onRateChange?: EventFunc<"ratechange">
onReset?: EventFunc<"reset">
onResize?: EventFunc<"resize">
onScroll?: EventFunc<"scroll">
onSeeked?: EventFunc<"seeked">
onSeeking?: EventFunc<"seeking">
onSelect?: EventFunc<"select">
onStalled?: EventFunc<"stalled">
onSubmit?: EventFunc<"submit">
onSuspend?: EventFunc<"suspend">
onTimeUpdate?: EventFunc<"timeupdate">
onTouchCancel?: EventFunc<"touchcancel">
onTouchEnd?: EventFunc<"touchend">
onTouchMove?: EventFunc<"touchmove">
onTouchStart?: EventFunc<"touchstart">
onTransitionEnd?: EventFunc<"transitionend">
onVolumeChange?: EventFunc<"volumechange">
onWaiting?: EventFunc<"waiting">
onWheel?: EventFunc<"wheel">

Generated using TypeDoc