summaryrefslogtreecommitdiff
path: root/vendor/web-sys/src/features/gen_FileSystemFileHandle.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-10 13:11:11 -0600
committermo khan <mo@mokhan.ca>2025-07-10 13:11:11 -0600
commit01959b16a21b22b5df5f16569c2a8e8f92beecef (patch)
tree32afa5d747c5466345c59ec52161a7cba3d6d755 /vendor/web-sys/src/features/gen_FileSystemFileHandle.rs
parentff30574117a996df332e23d1fb6f65259b316b5b (diff)
chore: vendor dependencies
Diffstat (limited to 'vendor/web-sys/src/features/gen_FileSystemFileHandle.rs')
-rw-r--r--vendor/web-sys/src/features/gen_FileSystemFileHandle.rs47
1 files changed, 47 insertions, 0 deletions
diff --git a/vendor/web-sys/src/features/gen_FileSystemFileHandle.rs b/vendor/web-sys/src/features/gen_FileSystemFileHandle.rs
new file mode 100644
index 00000000..b22d7983
--- /dev/null
+++ b/vendor/web-sys/src/features/gen_FileSystemFileHandle.rs
@@ -0,0 +1,47 @@
+#![allow(unused_imports)]
+#![allow(clippy::all)]
+use super::*;
+use wasm_bindgen::prelude::*;
+#[wasm_bindgen]
+extern "C" {
+ # [wasm_bindgen (extends = FileSystemHandle , extends = :: js_sys :: Object , js_name = FileSystemFileHandle , typescript_type = "FileSystemFileHandle")]
+ #[derive(Debug, Clone, PartialEq, Eq)]
+ #[doc = "The `FileSystemFileHandle` class."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `FileSystemFileHandle`*"]
+ pub type FileSystemFileHandle;
+ # [wasm_bindgen (method , structural , js_class = "FileSystemFileHandle" , js_name = createSyncAccessHandle)]
+ #[doc = "The `createSyncAccessHandle()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle/createSyncAccessHandle)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `FileSystemFileHandle`*"]
+ pub fn create_sync_access_handle(this: &FileSystemFileHandle) -> ::js_sys::Promise;
+ # [wasm_bindgen (method , structural , js_class = "FileSystemFileHandle" , js_name = createWritable)]
+ #[doc = "The `createWritable()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle/createWritable)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `FileSystemFileHandle`*"]
+ pub fn create_writable(this: &FileSystemFileHandle) -> ::js_sys::Promise;
+ #[cfg(feature = "FileSystemCreateWritableOptions")]
+ # [wasm_bindgen (method , structural , js_class = "FileSystemFileHandle" , js_name = createWritable)]
+ #[doc = "The `createWritable()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle/createWritable)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `FileSystemCreateWritableOptions`, `FileSystemFileHandle`*"]
+ pub fn create_writable_with_options(
+ this: &FileSystemFileHandle,
+ options: &FileSystemCreateWritableOptions,
+ ) -> ::js_sys::Promise;
+ # [wasm_bindgen (method , structural , js_class = "FileSystemFileHandle" , js_name = getFile)]
+ #[doc = "The `getFile()` method."]
+ #[doc = ""]
+ #[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/FileSystemFileHandle/getFile)"]
+ #[doc = ""]
+ #[doc = "*This API requires the following crate features to be activated: `FileSystemFileHandle`*"]
+ pub fn get_file(this: &FileSystemFileHandle) -> ::js_sys::Promise;
+}