deno/ext/webidl
denobot a98e146a55
1.46.3 (#25422)
Co-authored-by: littledivy <littledivy@users.noreply.github.com>
2024-09-04 17:42:16 +05:30
..
benches
00_webidl.js refactor(ext): throw new error instead of throw error (#25272) 2024-08-29 15:38:02 +02:00
Cargo.toml 1.46.3 (#25422) 2024-09-04 17:42:16 +05:30
internal.d.ts Revert "feat(fetch): accept async iterables for body" (#25207) 2024-08-29 15:34:58 +02:00
lib.rs
README.md docs: Add documentation to a subset of available extensions (#24138) 2024-06-18 00:07:48 +02:00

deno_webidl

This crate implements WebIDL for Deno. It consists of infrastructure to do ECMA -> WebIDL conversions.

Spec: https://webidl.spec.whatwg.org/

Usage Example

From javascript, include the extension's source, and assign the following to the global scope:

import * as webidl from "ext:deno_webidl/00_webidl.js";
Object.defineProperty(globalThis, webidl.brand, {
  value: webidl.brand,
  enumerable: false,
  configurable: true,
  writable: true,
});

Then from rust, provide init_webidl::init_webidl::init_ops_and_esm() in the extensions field of your RuntimeOptions