Interface EventModifierData

Data of user interactions that have key modifires. Documentation from the Mozilla Web API website.

interface EventModifierData {
    altKey: boolean;
    ctrlKey: boolean;
    currentTarget: null | EventTarget;
    metaKey: boolean;
    shiftKey: boolean;
    target: null | EventTarget;
    timeStamp: number;
}

Hierarchy

Properties

altKey: boolean

True if the alt key was down when the mouse event was fired.

ctrlKey: boolean

True if the control key was down when the mouse event was fired.

currentTarget: null | EventTarget

A reference to the currently registered target for the event. This is the object to which the event is currently slated to be sent. It's possible this has been changed along the way through retargeting.

metaKey: boolean

True if the meta key was down when the mouse event was fired.

shiftKey: boolean

True if the shift key was down when the mouse event was fired.

target: null | EventTarget

A reference to the target to which the event was originally dispatched.

timeStamp: number

The time at which the event was created (in milliseconds). By specification, this value is time since epoch—but in reality, browsers' definitions vary. In addition, work is underway to change this to be a DOMHighResTimeStamp instead.

Generated using TypeDoc