type TestOutputElement.PlatformEvent
Type definition for a set of platform event names.
type PlatformEvent =
| "click"
| "dblclick"
| "mouseup"
| "mousedown"
| "keydown"
| "keyup"
| "focusin"
| "focusout"
| "change"
| "input"
| "mouseenter"
| "mouseleave"
| "submit";
Notes
- This type is used by TestOutputElement.sendPlatformEvent().
- These names are based on DOM events, but aren’t meant to be platform specific.
Related
class TestOutputElement
A class that represents a rendered output element.
