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
|
#![allow(unused_imports)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = Event , extends = :: js_sys :: Object , js_name = CustomEvent , typescript_type = "CustomEvent")]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `CustomEvent` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CustomEvent`*"]
pub type CustomEvent;
# [wasm_bindgen (structural , method , getter , js_class = "CustomEvent" , js_name = detail)]
#[doc = "Getter for the `detail` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/detail)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CustomEvent`*"]
pub fn detail(this: &CustomEvent) -> ::wasm_bindgen::JsValue;
#[wasm_bindgen(catch, constructor, js_class = "CustomEvent")]
#[doc = "The `new CustomEvent(..)` constructor, creating a new instance of `CustomEvent`."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CustomEvent`*"]
pub fn new(type_: &str) -> Result<CustomEvent, JsValue>;
#[cfg(feature = "CustomEventInit")]
#[wasm_bindgen(catch, constructor, js_class = "CustomEvent")]
#[doc = "The `new CustomEvent(..)` constructor, creating a new instance of `CustomEvent`."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CustomEvent`, `CustomEventInit`*"]
pub fn new_with_event_init_dict(
type_: &str,
event_init_dict: &CustomEventInit,
) -> Result<CustomEvent, JsValue>;
# [wasm_bindgen (method , structural , js_class = "CustomEvent" , js_name = initCustomEvent)]
#[doc = "The `initCustomEvent()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/initCustomEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CustomEvent`*"]
pub fn init_custom_event(this: &CustomEvent, type_: &str);
# [wasm_bindgen (method , structural , js_class = "CustomEvent" , js_name = initCustomEvent)]
#[doc = "The `initCustomEvent()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/initCustomEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CustomEvent`*"]
pub fn init_custom_event_with_can_bubble(this: &CustomEvent, type_: &str, can_bubble: bool);
# [wasm_bindgen (method , structural , js_class = "CustomEvent" , js_name = initCustomEvent)]
#[doc = "The `initCustomEvent()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/initCustomEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CustomEvent`*"]
pub fn init_custom_event_with_can_bubble_and_cancelable(
this: &CustomEvent,
type_: &str,
can_bubble: bool,
cancelable: bool,
);
# [wasm_bindgen (method , structural , js_class = "CustomEvent" , js_name = initCustomEvent)]
#[doc = "The `initCustomEvent()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/initCustomEvent)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `CustomEvent`*"]
pub fn init_custom_event_with_can_bubble_and_cancelable_and_detail(
this: &CustomEvent,
type_: &str,
can_bubble: bool,
cancelable: bool,
detail: &::wasm_bindgen::JsValue,
);
}
|