mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-13 14:21:22 +00:00
34 lines
1.6 KiB
Rust
34 lines
1.6 KiB
Rust
|
#![allow(unused_imports)]
|
||
|
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>;
|
||
|
}
|