summaryrefslogtreecommitdiffstats
path: root/vendor/web-sys/src/features/gen_CanvasGradient.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/web-sys/src/features/gen_CanvasGradient.rs')
-rw-r--r--vendor/web-sys/src/features/gen_CanvasGradient.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_CanvasGradient.rs b/vendor/web-sys/src/features/gen_CanvasGradient.rs
new file mode 100644
index 000000000..007a39b71
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_CanvasGradient.rs
@@ -0,0 +1,21 @@
+#![allow(unused_imports)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = :: js_sys :: Object , js_name = CanvasGradient , typescript_type = "CanvasGradient")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `CanvasGradient` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CanvasGradient)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CanvasGradient`*"]
+ pub type CanvasGradient;
+ # [wasm_bindgen (catch , method , structural , js_class = "CanvasGradient" , js_name = addColorStop)]
+ #[doc = "The `addColorStop()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/CanvasGradient/addColorStop)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `CanvasGradient`*"]
+ pub fn add_color_stop(this: &CanvasGradient, offset: f32, color: &str) -> Result<(), JsValue>;
+}