1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#![allow(unused_imports)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = MouseEvent , extends = UiEvent , extends = Event , extends = :: js_sys :: Object , js_name = PointerEvent , typescript_type = "PointerEvent")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `PointerEvent` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub type PointerEvent;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = pointerId)]
    #[doc = "Getter for the `pointerId` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerId)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn pointer_id(this: &PointerEvent) -> i32;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = width)]
    #[doc = "Getter for the `width` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/width)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn width(this: &PointerEvent) -> i32;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = height)]
    #[doc = "Getter for the `height` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/height)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn height(this: &PointerEvent) -> i32;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = pressure)]
    #[doc = "Getter for the `pressure` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pressure)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn pressure(this: &PointerEvent) -> f32;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = tangentialPressure)]
    #[doc = "Getter for the `tangentialPressure` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tangentialPressure)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn tangential_pressure(this: &PointerEvent) -> f32;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = tiltX)]
    #[doc = "Getter for the `tiltX` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltX)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn tilt_x(this: &PointerEvent) -> i32;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = tiltY)]
    #[doc = "Getter for the `tiltY` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/tiltY)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn tilt_y(this: &PointerEvent) -> i32;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = twist)]
    #[doc = "Getter for the `twist` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/twist)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn twist(this: &PointerEvent) -> i32;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = pointerType)]
    #[doc = "Getter for the `pointerType` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/pointerType)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn pointer_type(this: &PointerEvent) -> String;
    # [wasm_bindgen (structural , method , getter , js_class = "PointerEvent" , js_name = isPrimary)]
    #[doc = "Getter for the `isPrimary` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/isPrimary)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn is_primary(this: &PointerEvent) -> bool;
    #[wasm_bindgen(catch, constructor, js_class = "PointerEvent")]
    #[doc = "The `new PointerEvent(..)` constructor, creating a new instance of `PointerEvent`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/PointerEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn new(type_: &str) -> Result<PointerEvent, JsValue>;
    #[cfg(feature = "PointerEventInit")]
    #[wasm_bindgen(catch, constructor, js_class = "PointerEvent")]
    #[doc = "The `new PointerEvent(..)` constructor, creating a new instance of `PointerEvent`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/PointerEvent)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`, `PointerEventInit`*"]
    pub fn new_with_event_init_dict(
        type_: &str,
        event_init_dict: &PointerEventInit,
    ) -> Result<PointerEvent, JsValue>;
    # [wasm_bindgen (method , structural , js_class = "PointerEvent" , js_name = getCoalescedEvents)]
    #[doc = "The `getCoalescedEvents()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/getCoalescedEvents)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `PointerEvent`*"]
    pub fn get_coalesced_events(this: &PointerEvent) -> ::js_sys::Array;
}