mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-13 22:31:21 +00:00
55 lines
3.3 KiB
Rust
55 lines
3.3 KiB
Rust
|
#![allow(unused_imports)]
|
||
|
use super::*;
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
#[wasm_bindgen]
|
||
|
extern "C" {
|
||
|
# [ wasm_bindgen ( extends = SvgElement , extends = Element , extends = Node , extends = EventTarget , extends = :: js_sys :: Object , js_name = SVGFEMergeElement , typescript_type = "SVGFEMergeElement" ) ]
|
||
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||
|
#[doc = "The `SvgfeMergeElement` class."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement)"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `SvgfeMergeElement`*"]
|
||
|
pub type SvgfeMergeElement;
|
||
|
#[cfg(feature = "SvgAnimatedLength")]
|
||
|
# [ wasm_bindgen ( structural , method , getter , js_class = "SVGFEMergeElement" , js_name = x ) ]
|
||
|
#[doc = "Getter for the `x` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement/x)"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeMergeElement`*"]
|
||
|
pub fn x(this: &SvgfeMergeElement) -> SvgAnimatedLength;
|
||
|
#[cfg(feature = "SvgAnimatedLength")]
|
||
|
# [ wasm_bindgen ( structural , method , getter , js_class = "SVGFEMergeElement" , js_name = y ) ]
|
||
|
#[doc = "Getter for the `y` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement/y)"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeMergeElement`*"]
|
||
|
pub fn y(this: &SvgfeMergeElement) -> SvgAnimatedLength;
|
||
|
#[cfg(feature = "SvgAnimatedLength")]
|
||
|
# [ wasm_bindgen ( structural , method , getter , js_class = "SVGFEMergeElement" , 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/SVGFEMergeElement/width)"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeMergeElement`*"]
|
||
|
pub fn width(this: &SvgfeMergeElement) -> SvgAnimatedLength;
|
||
|
#[cfg(feature = "SvgAnimatedLength")]
|
||
|
# [ wasm_bindgen ( structural , method , getter , js_class = "SVGFEMergeElement" , 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/SVGFEMergeElement/height)"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeMergeElement`*"]
|
||
|
pub fn height(this: &SvgfeMergeElement) -> SvgAnimatedLength;
|
||
|
#[cfg(feature = "SvgAnimatedString")]
|
||
|
# [ wasm_bindgen ( structural , method , getter , js_class = "SVGFEMergeElement" , js_name = result ) ]
|
||
|
#[doc = "Getter for the `result` field of this object."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement/result)"]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedString`, `SvgfeMergeElement`*"]
|
||
|
pub fn result(this: &SvgfeMergeElement) -> SvgAnimatedString;
|
||
|
}
|