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
#![allow(unused_imports)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = BarProp , typescript_type = "BarProp")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `BarProp` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BarProp)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `BarProp`*"]
    pub type BarProp;
    # [wasm_bindgen (structural , catch , method , getter , js_class = "BarProp" , js_name = visible)]
    #[doc = "Getter for the `visible` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BarProp/visible)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `BarProp`*"]
    pub fn visible(this: &BarProp) -> Result<bool, JsValue>;
    # [wasm_bindgen (structural , catch , method , setter , js_class = "BarProp" , js_name = visible)]
    #[doc = "Setter for the `visible` field of this object."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/BarProp/visible)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `BarProp`*"]
    pub fn set_visible(this: &BarProp, value: bool) -> Result<(), JsValue>;
}