type PlatformEvent
Type definition for a set of platform event names.
static
type PlatformEvent = "click" | "dblclick" | "mouseup" | "mousedown" | "keydown" | "keypress" | "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 TestOutputElementA class that represents a rendered output element.