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
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
    # [wasm_bindgen (is_type_of = | _ | false , extends = :: js_sys :: Object , js_name = EXT_blend_minmax , typescript_type = "EXT_blend_minmax")]
    #[derive(Debug, Clone, PartialEq, Eq)]
    #[doc = "The `ExtBlendMinmax` class."]
    #[doc = ""]
    #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/EXT_blend_minmax)"]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ExtBlendMinmax`*"]
    pub type ExtBlendMinmax;
}
impl ExtBlendMinmax {
    #[doc = "The `EXT_blend_minmax.MIN_EXT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ExtBlendMinmax`*"]
    pub const MIN_EXT: u32 = 32775u64 as u32;
    #[doc = "The `EXT_blend_minmax.MAX_EXT` const."]
    #[doc = ""]
    #[doc = "*This API requires the following crate features to be activated: `ExtBlendMinmax`*"]
    pub const MAX_EXT: u32 = 32776u64 as u32;
}