diff options
Diffstat (limited to 'vendor/web-sys/src/features/gen_Permissions.rs')
-rw-r--r-- | vendor/web-sys/src/features/gen_Permissions.rs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_Permissions.rs b/vendor/web-sys/src/features/gen_Permissions.rs new file mode 100644 index 000000000..4d57a8dc1 --- /dev/null +++ b/vendor/web-sys/src/features/gen_Permissions.rs @@ -0,0 +1,34 @@ +#![allow(unused_imports)] +use super::*; +use wasm_bindgen::prelude::*; +#[wasm_bindgen] +extern "C" { + # [wasm_bindgen (extends = :: js_sys :: Object , js_name = Permissions , typescript_type = "Permissions")] + #[derive(Debug, Clone, PartialEq, Eq)] + #[doc = "The `Permissions` class."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Permissions)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `Permissions`*"] + pub type Permissions; + # [wasm_bindgen (catch , method , structural , js_class = "Permissions" , js_name = query)] + #[doc = "The `query()` method."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Permissions/query)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `Permissions`*"] + pub fn query( + this: &Permissions, + permission: &::js_sys::Object, + ) -> Result<::js_sys::Promise, JsValue>; + # [wasm_bindgen (catch , method , structural , js_class = "Permissions" , js_name = revoke)] + #[doc = "The `revoke()` method."] + #[doc = ""] + #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/Permissions/revoke)"] + #[doc = ""] + #[doc = "*This API requires the following crate features to be activated: `Permissions`*"] + pub fn revoke( + this: &Permissions, + permission: &::js_sys::Object, + ) -> Result<::js_sys::Promise, JsValue>; +} |