#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (is_type_of = | _ | false , extends = "SvgPathSeg" , extends = "::js_sys::Object" , js_name = "SVGPathSegLinetoRel" , typescript_type = "SVGPathSegLinetoRel")]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `SvgPathSegLinetoRel` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGPathSegLinetoRel)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgPathSegLinetoRel`*"]
pub type SvgPathSegLinetoRel;
#[wasm_bindgen(method, getter, js_class = "SVGPathSegLinetoRel", 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/SVGPathSegLinetoRel/x)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgPathSegLinetoRel`*"]
pub fn x(this: &SvgPathSegLinetoRel) -> f32;
#[wasm_bindgen(method, setter, js_class = "SVGPathSegLinetoRel", js_name = "x")]
#[doc = "Setter for the `x` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGPathSegLinetoRel/x)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgPathSegLinetoRel`*"]
pub fn set_x(this: &SvgPathSegLinetoRel, value: f32);
#[wasm_bindgen(method, getter, js_class = "SVGPathSegLinetoRel", 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/SVGPathSegLinetoRel/y)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgPathSegLinetoRel`*"]
pub fn y(this: &SvgPathSegLinetoRel) -> f32;
#[wasm_bindgen(method, setter, js_class = "SVGPathSegLinetoRel", js_name = "y")]
#[doc = "Setter for the `y` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGPathSegLinetoRel/y)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgPathSegLinetoRel`*"]
pub fn set_y(this: &SvgPathSegLinetoRel, value: f32);
}