#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(
extends = "SvgGradientElement",
extends = "SvgElement",
extends = "Element",
extends = "Node",
extends = "EventTarget",
extends = "::js_sys::Object",
js_name = "SVGRadialGradientElement",
typescript_type = "SVGRadialGradientElement"
)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `SvgRadialGradientElement` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgRadialGradientElement`*"]
pub type SvgRadialGradientElement;
#[cfg(feature = "SvgAnimatedLength")]
#[wasm_bindgen(method, getter, js_class = "SVGRadialGradientElement", js_name = "cx")]
#[doc = "Getter for the `cx` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement/cx)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgRadialGradientElement`*"]
pub fn cx(this: &SvgRadialGradientElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedLength")]
#[wasm_bindgen(method, getter, js_class = "SVGRadialGradientElement", js_name = "cy")]
#[doc = "Getter for the `cy` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement/cy)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgRadialGradientElement`*"]
pub fn cy(this: &SvgRadialGradientElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedLength")]
#[wasm_bindgen(method, getter, js_class = "SVGRadialGradientElement", js_name = "r")]
#[doc = "Getter for the `r` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement/r)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgRadialGradientElement`*"]
pub fn r(this: &SvgRadialGradientElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedLength")]
#[wasm_bindgen(method, getter, js_class = "SVGRadialGradientElement", js_name = "fx")]
#[doc = "Getter for the `fx` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement/fx)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgRadialGradientElement`*"]
pub fn fx(this: &SvgRadialGradientElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedLength")]
#[wasm_bindgen(method, getter, js_class = "SVGRadialGradientElement", js_name = "fy")]
#[doc = "Getter for the `fy` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement/fy)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgRadialGradientElement`*"]
pub fn fy(this: &SvgRadialGradientElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedLength")]
#[wasm_bindgen(method, getter, js_class = "SVGRadialGradientElement", js_name = "fr")]
#[doc = "Getter for the `fr` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement/fr)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgRadialGradientElement`*"]
pub fn fr(this: &SvgRadialGradientElement) -> SvgAnimatedLength;
}