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