-
I'm noticing a bunch of type-checking errors when running deno-dom 0.1.17 against the latest deno release (v1.17.1):
```
error: TS2344 [ERROR]: Type 'DeepWriteable unknown; deno_dom_parse_frag_syn…
-
With the default example code and the latest version of Deno I get:
> error: Uncaught (in promise) TypeError: Deno.openPlugin is not a function
> return Deno.openPlugin(file.path);
-
I just ran this command as recommended from the readme:
```sh
deno run -Ar --unstable https://deno.land/x/webview/examples/local.ts
```
Results in this error:
> Check https://deno.land/x/we…
-
Hi,
The example, and fix documented in #79 do not work for me in the latest Deno versions (v.1.11.3).
The advise on that issue is to downgrade to v1.8.3, however that is not always an option.
…
-
I hope to see more explanation for relation between ( deno, ts ) and ( Astrodon/tauri , rust )
for Astrodon consumer and Astrodon developer.
for example is rust for Astrodon consumer in certain situ…
-
# Code
```
const user32 = Deno.dlopen("user32.dll", {
SystemParametersInfoA: {
parameters: [
"u32",
"u32",
"pointer",
"u32",
…
-
With the release of v1.13 Deno has replaced their native Rust plugin system with a more generic FFI interface (https://deno.com/blog/v1.13#experimental-ffi-replaces-native-plugin-system). Sadly `Deno.…
-
-
Let's say we need to pass a string in the procedure parameter. Good! We specify the type "buffer", take an `Uint8Array` and write the encoded string there byte-by-byte, ending everything with a null b…
-
With the change in v1.13 from `--allow-plugin` to `--allow-ffi` (PR #11152), prior shims using `--allow-plugin` are now broken...
```
error: Found argument '--allow-plugin' which wasn't expected, …