diff options
Diffstat (limited to 'vendor/web-sys/src/features/gen_PeriodicWave.rs')
-rw-r--r-- | vendor/web-sys/src/features/gen_PeriodicWave.rs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_PeriodicWave.rs b/vendor/web-sys/src/features/gen_PeriodicWave.rs new file mode 100644 index 000000000..a9ffc3855 --- /dev/null +++ b/vendor/web-sys/src/features/gen_PeriodicWave.rs @@ -0,0 +1,33 @@ +#![allow(unused_imports)] +use super::*; +use wasm_bindgen::prelude::*; +#[wasm_bindgen] +extern "C" { + # [wasm_bindgen (extends = :: js_sys :: Object , js_name = PeriodicWave , typescript_type = "PeriodicWave")] + #[derive(Debug, Clone, PartialEq, Eq)] + #[doc = "The `PeriodicWave` class."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PeriodicWave)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `PeriodicWave`*"] + pub type PeriodicWave; + #[cfg(feature = "BaseAudioContext")] + #[wasm_bindgen(catch, constructor, js_class = "PeriodicWave")] + #[doc = "The `new PeriodicWave(..)` constructor, creating a new instance of `PeriodicWave`."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PeriodicWave/PeriodicWave)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `BaseAudioContext`, `PeriodicWave`*"] + pub fn new(context: &BaseAudioContext) -> Result<PeriodicWave, JsValue>; + #[cfg(all(feature = "BaseAudioContext", feature = "PeriodicWaveOptions",))] + #[wasm_bindgen(catch, constructor, js_class = "PeriodicWave")] + #[doc = "The `new PeriodicWave(..)` constructor, creating a new instance of `PeriodicWave`."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/PeriodicWave/PeriodicWave)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `BaseAudioContext`, `PeriodicWave`, `PeriodicWaveOptions`*"] + pub fn new_with_options( + context: &BaseAudioContext, + options: &PeriodicWaveOptions, + ) -> Result<PeriodicWave, JsValue>; +} |