#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(
extends = "EventTarget",
extends = "::js_sys::Object",
js_name = "OffscreenCanvas",
typescript_type = "OffscreenCanvas"
)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `OffscreenCanvas` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub type OffscreenCanvas;
#[wasm_bindgen(method, getter, js_class = "OffscreenCanvas", js_name = "width")]
#[doc = "Getter for the `width` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/width)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub fn width(this: &OffscreenCanvas) -> u32;
#[wasm_bindgen(method, setter, js_class = "OffscreenCanvas", js_name = "width")]
#[doc = "Setter for the `width` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/width)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub fn set_width(this: &OffscreenCanvas, value: u32);
#[wasm_bindgen(method, getter, js_class = "OffscreenCanvas", js_name = "height")]
#[doc = "Getter for the `height` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/height)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub fn height(this: &OffscreenCanvas) -> u32;
#[wasm_bindgen(method, setter, js_class = "OffscreenCanvas", js_name = "height")]
#[doc = "Setter for the `height` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/height)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub fn set_height(this: &OffscreenCanvas, value: u32);
#[wasm_bindgen(catch, constructor, js_class = "OffscreenCanvas")]
#[doc = "The `new OffscreenCanvas(..)` constructor, creating a new instance of `OffscreenCanvas`."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/OffscreenCanvas)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub fn new(width: u32, height: u32) -> Result<OffscreenCanvas, JsValue>;
#[wasm_bindgen(catch, method, js_class = "OffscreenCanvas", js_name = "convertToBlob")]
#[doc = "The `convertToBlob()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/convertToBlob)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub fn convert_to_blob(this: &OffscreenCanvas) -> Result<::js_sys::Promise, JsValue>;
#[cfg(feature = "ImageEncodeOptions")]
#[wasm_bindgen(catch, method, js_class = "OffscreenCanvas", js_name = "convertToBlob")]
#[doc = "The `convertToBlob()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/convertToBlob)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ImageEncodeOptions`, `OffscreenCanvas`*"]
pub fn convert_to_blob_with_options(
this: &OffscreenCanvas,
options: &ImageEncodeOptions,
) -> Result<::js_sys::Promise, JsValue>;
#[wasm_bindgen(catch, method, js_class = "OffscreenCanvas", js_name = "getContext")]
#[doc = "The `getContext()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/getContext)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub fn get_context(
this: &OffscreenCanvas,
context_id: &str,
) -> Result<Option<::js_sys::Object>, JsValue>;
#[wasm_bindgen(catch, method, js_class = "OffscreenCanvas", js_name = "getContext")]
#[doc = "The `getContext()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/getContext)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `OffscreenCanvas`*"]
pub fn get_context_with_context_options(
this: &OffscreenCanvas,
context_id: &str,
context_options: &::wasm_bindgen::JsValue,
) -> Result<Option<::js_sys::Object>, JsValue>;
#[cfg(feature = "ImageBitmap")]
#[wasm_bindgen(
catch,
method,
js_class = "OffscreenCanvas",
js_name = "transferToImageBitmap"
)]
#[doc = "The `transferToImageBitmap()` method."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/transferToImageBitmap)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `ImageBitmap`, `OffscreenCanvas`*"]
pub fn transfer_to_image_bitmap(this: &OffscreenCanvas) -> Result<ImageBitmap, JsValue>;
}