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
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (extends = :: js_sys :: Object , js_name = DOMParser , typescript_type = "DOMParser")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `DomParser` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DOMParser)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomParser`*"]
    pub type DomParser;
    #[wasm_bindgen(catch, constructor, js_class = "DOMParser")]
    #[doc = "The `new DomParser(..)` constructor, creating a new instance of `DomParser`."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/DOMParser)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `DomParser`*"]
    pub fn new() -> Result<DomParser, JsValue>;
    #[cfg(all(feature = "Document", feature = "SupportedType",))]
    # [wasm_bindgen (catch , method , structural , js_class = "DOMParser" , js_name = parseFromString)]
    #[doc = "The `parseFromString()` method."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/DOMParser/parseFromString)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `Document`, `DomParser`, `SupportedType`*"]
    pub fn parse_from_string(
        this: &DomParser,
        str: &str,
        type_: SupportedType,
    ) -> Result<Document, JsValue>;
}