chore(api): tauri can serialize array buffers from rc.7 (#1694)

* chore(api): tauri can serialize array buffers from rc.7

* fmt

* fix audit

* update lockfile
This commit is contained in:
Lucas Fernandes Nogueira
2024-08-28 17:58:56 -03:00
committed by GitHub
parent 0c040bcc9a
commit d0482502e9
9 changed files with 36 additions and 39 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -411,7 +411,7 @@ class FileHandle extends Resource {
async write(data: Uint8Array): Promise<number> {
return await invoke("plugin:fs|write", {
rid: this.rid,
data: Array.from(data),
data,
});
}
}